Skip to content

Instantly share code, notes, and snippets.

@edsunman
edsunman / ThrelteAnimationUtils.ts
Last active March 8, 2025 19:25
Threlte Utilities
/**
* A timeline with internal clock to schedule simple animations.
* @example
* // create timeline
* let timeline = new Timeline();
*
* // schedule a function to be run in two seconds time
* timeline.addKeyframe(2, () => {
* console.log('Hello in two seconds time');
* });