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

Packages that use AnimatedSprite
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.strategy   
 

Uses of AnimatedSprite in com.b3dgs.lionengine
 

Methods in com.b3dgs.lionengine that return AnimatedSprite
 AnimatedSprite Drawable.loadAnimatedSprite(java.awt.image.BufferedImage surface, int horizontalFrames, int verticalFrames)
          Create an animated sprite, giving horizontal and vertical frames (sharing the same surface).
 AnimatedSprite Drawable.loadAnimatedSprite(java.lang.String filename, int horizontalFrames, int verticalFrames)
          Load an animated sprite from a file, giving horizontal and vertical frames.
 

Uses of AnimatedSprite in com.b3dgs.lionengine.drawable
 

Methods in com.b3dgs.lionengine.drawable that return AnimatedSprite
 AnimatedSprite AnimatedSprite.instanciate()
          Get instancied version of current animated sprite (shares the same surface).
 

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

Methods in com.b3dgs.lionengine.drawable.impl that return AnimatedSprite
 AnimatedSprite DrawableFactory.loadAnimatedSprite(java.awt.image.BufferedImage surface, int numberOfHorizontalFrames, int numberOfVerticalFrames)
           
 AnimatedSprite DrawableFactory.loadAnimatedSprite(java.lang.String filename, int numberOfHorizontalFrames, int numberOfVerticalFrames)
           
 

Uses of AnimatedSprite in com.b3dgs.lionengine.game
 

Fields in com.b3dgs.lionengine.game declared as AnimatedSprite
protected  AnimatedSprite Projectile.sprite
          Projectile animation.
 

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

Fields in com.b3dgs.lionengine.game.platform declared as AnimatedSprite
protected  AnimatedSprite AbstractPlatformEntity.sprite
          Animation surface.
 

Fields in com.b3dgs.lionengine.game.platform with type parameters of type AnimatedSprite
protected  java.util.List<AnimatedSprite> AbstractRasteredPlatformEntity.rastersAnim
           
 java.util.List<AnimatedSprite> RasteredPlatformEntrySetup.rastersAnim
           
 

Methods in com.b3dgs.lionengine.game.platform that return AnimatedSprite
 AnimatedSprite AbstractPlatformEntity.getSprite()
          Get sprite surface.
 

Methods in com.b3dgs.lionengine.game.platform with parameters of type AnimatedSprite
protected  void AbstractPlatformEntity.renderAnim(java.awt.Graphics2D g, AnimatedSprite sprite, PlatformCamera camera)
          Render an animated sprite from the entity location, following camera view point.
protected  void AbstractPlatformEntity.renderAnim(java.awt.Graphics2D g, AnimatedSprite sprite, PlatformCamera camera, int rx, int ry, boolean mirror)
          Render an animated sprite from the entity location, following camera view point.
 

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

Fields in com.b3dgs.lionengine.game.strategy declared as AnimatedSprite
protected  AnimatedSprite AbstractEntry.sprite
          Animation surface.