com.annahid.libs.artenus.graphics.animation
AnimationHandler
Interface for classes that handle animations. In order to make animations effective, you should
set their animation to an animation handler instance using
setAnimation(AnimationHandler). public interface AnimationHandler
Method Summary
| Modifier and Type | Method and Description |
|---|---|
public void | advance(Animatable animatable, float elapsedTime) Called whenever the animation should update the animatable based on elapsed time. |
Method Detail
| advance | ||||
|---|---|---|---|---|
public void advance(
Animatable animatable,
float elapsedTime
)Called whenever the animation should update the animatable based on elapsed time. Parameters:
See Also:
|