Skip to content

Controlling Active Transitions

There are several methods you can call on selections with active transitions to stop, end, pause etc... These methods are helpful when you need to interrupt animations in progress to start a different set of transitions. For example when the user clicks a animate button multiple times.

Method NameDescription
stopTweensStops all tween onBeforeRenderObservables currently running or waiting to be run on the selection.
stopTransitionsStops all animations currently playing or waiting to be played on the selection.
resetTransitionsResets and plays all animations currently playing or waiting to be played on the selection.
resetStopTransitionsResets and stops all animations currently playing or waiting to be played on the selection.
pauseTransitionsPauses all animations currently playing or waiting to be played on the selection.
restartTransitionsResumes all paused animations currently playing or waiting to be played on the selection.
endTransitionsSkips to the end of all animations currently playing or waiting to be played on the selection.
js
let box = anu.bind('box', {}, [...Array(10).keys()]);

let transitionOptions = {
  duration: 500,
  delay: 100,
  easingFunction: new CircleEase(),
  onAnimationEnd: () => console.log('animate')
}

var box_transition = box.transition(transitionOptions).position(() => Vector3.Random(-5,5))

setTimeout(() => {
  box_transition.stopTransitions();
}, 250)