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

Packages that use TiledSprite
com.b3dgs.lionengine   
com.b3dgs.lionengine.drawable   
com.b3dgs.lionengine.drawable.impl   
com.b3dgs.lionengine.game.background   
com.b3dgs.lionengine.game.map   
com.b3dgs.lionengine.game.strategy   
 

Uses of TiledSprite in com.b3dgs.lionengine
 

Methods in com.b3dgs.lionengine that return TiledSprite
 TiledSprite Drawable.loadTiledSprite(java.awt.image.BufferedImage surface, int tileWidth, int tileHeight)
          Create a tiled sprite using an image reference, giving tile dimension (sharing the same surface).
 TiledSprite Drawable.loadTiledSprite(java.lang.String filename, int tileWidth, int tileHeight)
          Load a tiled sprite from a file, giving tile dimension.
 

Uses of TiledSprite in com.b3dgs.lionengine.drawable
 

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

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

Methods in com.b3dgs.lionengine.drawable.impl that return TiledSprite
 TiledSprite DrawableFactory.loadTiledSprite(java.awt.image.BufferedImage surface, int tileWidth, int tileHeight)
           
 TiledSprite DrawableFactory.loadTiledSprite(java.lang.String filename, int tileWidth, int tileHeight)
           
 

Uses of TiledSprite in com.b3dgs.lionengine.game.background
 

Fields in com.b3dgs.lionengine.game.background declared as TiledSprite
protected  TiledSprite AbstractClouds.sprite
           
 

Uses of TiledSprite in com.b3dgs.lionengine.game.map
 

Methods in com.b3dgs.lionengine.game.map that return TiledSprite
 TiledSprite AbstractRasteredTileMap.getPattern(java.lang.Integer pattern)
          Deprecated. use getRasterPattern instead.
 TiledSprite AbstractTileMap.getPattern(java.lang.Integer pattern)
          Get pattern (tilesheet) from its id.
 TiledSprite AbstractRasteredTileMap.getRasterPattern(java.lang.Integer pattern, int rasterID)
          Get a tilesheet from its pattern and raster id.
 

Methods in com.b3dgs.lionengine.game.map with parameters of type TiledSprite
 void AbstractTiledFogOfWar.setFogTiles(TiledSprite hide, TiledSprite fog)
          Set fog tilesheet reference.
 

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

Fields in com.b3dgs.lionengine.game.strategy declared as TiledSprite
protected  TiledSprite AbstractControlPanel.icons
          Available icons inside surface.
 

Methods in com.b3dgs.lionengine.game.strategy with parameters of type TiledSprite
abstract  void AbstractSkill.renderOnPanel(java.awt.Graphics2D g, AbstractControlPanel<TTile,TSkill,TAttr> panel, StrategyCursor cursor, TiledSprite icons, int x, int y, int w, int h)
          Rendering routine on panel.
 

Constructors in com.b3dgs.lionengine.game.strategy with parameters of type TiledSprite
AbstractControlPanel(Sprite panel, TiledSprite icons)
          Create a new control panel.