start
The event fired when this animation is started. This can be used, for example, to play a sound or start a particle system, when the animation starts.
This event is fired at the end of the frame after the scene is rendered.
animation.start.addEventListener(function(model, animation) {
console.log(`Animation started: ${animation.name}`);
});
Content copied to clipboard