We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92bab90 commit 6a5b1beCopy full SHA for 6a5b1be
.gitignore
@@ -21,6 +21,7 @@ docs/.cache
21
target
22
frames
23
output.mp4
24
+output.gif
25
loudnorm.json
26
output_youtube.mp4
27
bin
project/project.tsx
@@ -18,9 +18,9 @@ const HelloScene = () => {
18
const progress = useVariable(0)
19
20
useAnimation(async (context) => {
- await context.move(progress).to(1, seconds(2), BEZIER_SMOOTH)
+ await context.move(progress).to(1, seconds(3), BEZIER_SMOOTH)
await context.sleep(seconds(1))
- await context.move(progress).to(0, seconds(2), BEZIER_SMOOTH)
+ await context.move(progress).to(0, seconds(3), BEZIER_SMOOTH)
}, [])
return (
0 commit comments