Skip to content

Commit 6a5b1be

Browse files
committed
asjust
1 parent 92bab90 commit 6a5b1be

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ docs/.cache
2121
target
2222
frames
2323
output.mp4
24+
output.gif
2425
loudnorm.json
2526
output_youtube.mp4
2627
bin

project/project.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ const HelloScene = () => {
1818
const progress = useVariable(0)
1919

2020
useAnimation(async (context) => {
21-
await context.move(progress).to(1, seconds(2), BEZIER_SMOOTH)
21+
await context.move(progress).to(1, seconds(3), BEZIER_SMOOTH)
2222
await context.sleep(seconds(1))
23-
await context.move(progress).to(0, seconds(2), BEZIER_SMOOTH)
23+
await context.move(progress).to(0, seconds(3), BEZIER_SMOOTH)
2424
}, [])
2525

2626
return (

0 commit comments

Comments
 (0)