blob: 3e35184633821577c03b8eda3c161f2c940a6eaa (
plain)
1
2
3
4
5
6
7
8
|
import { makeScene2D } from "@motion-canvas/2d";
import { waitFor } from "@motion-canvas/core";
export default makeScene2D(function* (view) {
// Create your animations here
yield* waitFor(5);
});
|