DoopelPonger
|
UI object that should have a transition in and transition out animation. More...
Public Member Functions | |
delegate void | AnimationFinishedCallback () |
abstract void | TransitionIn (float totalTransitionTime, float waitTimeBeforeTransitionStarts) |
Start the transition in animation. More... | |
abstract void | TransitionOut (float totalTransitionTime, float waitTimeBeforeTransitionStarts, AnimationFinishedCallback animationFinishedCallback) |
Start the transition out animation. More... | |
UI object that should have a transition in and transition out animation.
delegate void UITransition.AnimationFinishedCallback | ( | ) |
|
pure virtual |
Start the transition in animation.
totalTransitionTime | Time it should take to transition in. |
waitTimeBeforeTransitionStarts | Time to wait before starting the transition. |
Implemented in UIBlendTreeTransition.
|
pure virtual |
Start the transition out animation.
totalTransitionTime | Time it should take to transition in. |
waitTimeBeforeTransitionStarts | Time to wait before starting the transition. |
animationFinishedCallback | Function to call once the animation has finished, could be null. |
Implemented in UIBlendTreeTransition.