Package com.spinyowl.legui.animation
Interface Animator
- All Known Implementing Classes:
AnimatorImpl
public interface Animator
Animation processor..
-
Method Summary
Modifier and TypeMethodDescriptionvoidpushAnimation(Animation animation) Used to add animation to animator.voidremoveAnimation(Animation animation) Used to remove animation from animator.voidThis method used to process animations.
-
Method Details
-
runAnimations
void runAnimations()This method used to process animations. -
pushAnimation
Used to add animation to animator.- Parameters:
animation- animation to add.
-
removeAnimation
Used to remove animation from animator. In case if animation is not finished animation still should be removed and terminated.- Parameters:
animation- animation to remove.
-