VISUTransitionAnimationSystemDelegate
in
Interface for animation system delegates
Table of Contents
Methods
- animationDidStart() : void
- Called when an animation starts
- animationDidStop() : void
- Called when an animation stops
- animationGroupDidBegin() : void
- Called when an animation group begins
- animationGroupDidFinish() : void
- Called when an animation group finishes
Methods
animationDidStart()
Called when an animation starts
public
animationDidStart(BaseAnimation $animation, int $entity, bool $reversing, bool $repeating, bool $waiting) : void
Parameters
- $animation : BaseAnimation
-
The animation
- $entity : int
-
The entity the animation is running on
- $reversing : bool
-
Is the animation reversing?
- $repeating : bool
-
Is the animation repeating?
- $waiting : bool
-
Is the animation waiting?
animationDidStop()
Called when an animation stops
public
animationDidStop(BaseAnimation $animation, int $entity, bool $finished) : void
Parameters
- $animation : BaseAnimation
- $entity : int
- $finished : bool
animationGroupDidBegin()
Called when an animation group begins
public
animationGroupDidBegin(BaseAnimationContainer $animationGroup, int $entity) : void
Parameters
- $animationGroup : BaseAnimationContainer
-
The animation group
- $entity : int
-
The entity the animation group is running on
animationGroupDidFinish()
Called when an animation group finishes
public
animationGroupDidFinish(BaseAnimationContainer $animationGroup, int $entity) : void
Parameters
- $animationGroup : BaseAnimationContainer
-
The animation group
- $entity : int
-
The entity the animation group is running on