The following tables list the members exposed by AnimationBase.
Name | Description | |
---|---|---|
AnimationBase Constructor |
Name | Description | |
---|---|---|
duration | Gets duration of the animation in ticks and sets duration in milliseconds. Meaning that the onNext method will be fired for each tick. The default Value is 35. Duration in ticks for "get" and duration in milliseconds for "set". | |
isAnimating | Returns true if the animation is currently occurring. True: animation is running. |
Name | Description | |
---|---|---|
dispose | Disposes of the animation object. | |
onBegin | Should be overriden on the base class. Notifies the Animation that it is about to Begin | |
onEnd | Should be overriden on the base class. Notifies the Animation that the animation has ended. | |
onNext | Should be overriden on the base class. Fired for each tick of the Animation | |
play | Starts the Animation | |
stop | Ends the Animation. |