📖 INDEX
LOADING ENGINE...
KeyframeTrack
THREE.JS REFERENCE // keyframetrack
A KeyframeTrack is a timed sequence of keyframes, which are composed of lists of times and related values.
Syntax
const track = new THREE.VectorKeyframeTrack('.position', times, values);Examples
Example 01Basic Usage
const track = new THREE.VectorKeyframeTrack('.position', times, values);Best Practices
- Consult the official Three.js documentation for deeper understanding.
- Be mindful of performance when creating many objects or geometries.