Class AtlasRenderComponent

All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable, Renderable, Comparable<Renderable>
Direct Known Subclasses:
JoinableComponent, JoinableComponent, RotationRenderComponent

public class AtlasRenderComponent extends RenderComponent
  • Constructor Details

    • AtlasRenderComponent

      public AtlasRenderComponent(String atlasPath, String region)
    • AtlasRenderComponent

      public AtlasRenderComponent(com.badlogic.gdx.graphics.g2d.TextureAtlas atlas, String region)
  • Method Details

    • updateTextureAtlas

      public void updateTextureAtlas(com.badlogic.gdx.graphics.g2d.TextureAtlas atlas, String region)
      Changes the atlas being used to a new atlas and sets the region to be the given region.
      Parameters:
      atlas - - the new atlas
      region - - the new region
    • scaleEntity

      public void scaleEntity()
      Scale the entity to a width of 1 and a height matching the texture's ratio
    • setRegion

      public void setRegion(String region, boolean scaleEntity)
      Sets the region to use when drawing the texture.
      Parameters:
      region - - the region to use
      scaleEntity - - whether the scale should be updated.
    • draw

      protected void draw(com.badlogic.gdx.graphics.g2d.SpriteBatch batch)
      Description copied from class: RenderComponent
      Draw the renderable. Should be called only by the renderer, not manually.
      Specified by:
      draw in class RenderComponent
      Parameters:
      batch - Batch to render to.