📖 INDEX
LOADING ENGINE...
AnimationMixer
THREE.JS REFERENCE // animationmixer
The AnimationMixer is a player for animations on a particular object in the scene.
Syntax
const mixer = new THREE.AnimationMixer(mesh);Examples
Example 01Basic Usage
const mixer = new THREE.AnimationMixer(mesh);Best Practices
- Consult the official Three.js documentation for deeper understanding.
- Be mindful of performance when creating many objects or geometries.