Expand description
Keyframe tracks — time-stamped values with interpolated playback.
A KeyframeTrack<T> stores a list of (time, value) pairs and provides
continuous interpolation between them using configurable easing per segment.
This is the foundation for cinematic cutscenes, camera paths, and math-driven animation curves exported from design tools.
Structs§
- Camera
Path - A smooth camera path through a list of positions and targets.
- Keyframe
- A single keyframe: a value at a specific time.
- Keyframe
Track - An ordered list of keyframes with time-based interpolation.
- Multi
Track - A collection of named
KeyframeTrack<f32>tracks played together.
Enums§
- Extrapolate
Mode - How to handle time values outside the keyframe range.