adjust MkNumber tween time

This commit is contained in:
ThatOneCalculator 2023-02-15 10:34:17 -08:00
parent 96311b597c
commit 92572157fa
No known key found for this signature in database
GPG key ID: 8703CACD01000000

View file

@ -16,7 +16,7 @@ const tweened = reactive({
});
watch(() => props.value, (n) => {
gsap.to(tweened, { duration: 1, number: Number(n) || 0 });
gsap.to(tweened, { duration: 0.6, number: Number(n) || 0 });
}, {
immediate: true,
});