Uses of Interface
com.b3dgs.lionengine.drawable.Animation

Packages that use Animation
com.b3dgs.lionengine   
com.b3dgs.lionengine.drawable   
com.b3dgs.lionengine.drawable.impl   
com.b3dgs.lionengine.game   
com.b3dgs.lionengine.game.platform   
com.b3dgs.lionengine.game.purviews   
com.b3dgs.lionengine.game.strategy   
 

Uses of Animation in com.b3dgs.lionengine
 

Methods in com.b3dgs.lionengine that return Animation
 Animation Drawable.createAnimation(int firstFrame, int lastFrame, int step, float speed, boolean reverse, boolean repeat)
          Create an animation, which can be read by an animated sprite.
 

Uses of Animation in com.b3dgs.lionengine.drawable
 

Methods in com.b3dgs.lionengine.drawable with parameters of type Animation
 void Animator.play(Animation animation)
          Play the animated sprite with a specific animation, previously created.
 void Animator.play(Animation animation, float speed)
          Play the animated sprite with a specific animation, previously created.
 

Uses of Animation in com.b3dgs.lionengine.drawable.impl
 

Methods in com.b3dgs.lionengine.drawable.impl that return Animation
 Animation DrawableFactory.createAnimation(int firstFrame, int lastFrame, int step, float speed, boolean reverse, boolean repeat)
           
 

Uses of Animation in com.b3dgs.lionengine.game
 

Methods in com.b3dgs.lionengine.game that return Animation
 Animation DefaultInstruction.decodeAnim(java.lang.String line)
          Get the animation instruction, delimited by {start-end} (speed) <reverse> |repeat|
 

Methods in com.b3dgs.lionengine.game with parameters of type Animation
 void Projectile.play(Animation anim)
           
 void Projectile.play(Animation anim, float speed)
           
 

Uses of Animation in com.b3dgs.lionengine.game.platform
 

Methods in com.b3dgs.lionengine.game.platform with parameters of type Animation
 void AbstractPlatformEntity.play(Animation anim)
           
 void AbstractPlatformEntity.play(Animation anim, float speed)
           
 

Uses of Animation in com.b3dgs.lionengine.game.purviews
 

Methods in com.b3dgs.lionengine.game.purviews that return Animation
 Animation Configurable.getAnim(java.lang.String name)
          Get animation data from its name.
 

Uses of Animation in com.b3dgs.lionengine.game.strategy
 

Fields in com.b3dgs.lionengine.game.strategy declared as Animation
 Animation AbstractEntry.anim
          Current playing animation.
 

Methods in com.b3dgs.lionengine.game.strategy with parameters of type Animation
 void AbstractEntry.play(Animation anim)
           
 void AbstractEntry.play(Animation anim, float speed)