Class DamageTextureComponent

All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable, Renderable, Comparable<Renderable>

public class DamageTextureComponent extends RenderComponent
A Rendering component used to switch between different textures based on the current entity's health.
  • Constructor Details

    • DamageTextureComponent

      public DamageTextureComponent(String texturePath)
      Creates a DamageTextureComponent with the given texture
      Parameters:
      texturePath - path to texture to be displayed
    • DamageTextureComponent

      public DamageTextureComponent(com.badlogic.gdx.graphics.Texture texture)
      Creates a DamageTextureComponent with the given texture
      Parameters:
      texture - Texture object to be displayed
  • Method Details

    • addTexture

      public DamageTextureComponent addTexture(int threshold, String texturePath)
      Add a texture with a given threshold such that if health <= threshold then the texture will show.
      Parameters:
      threshold - Threshold to show texture at
      texturePath - Path to texture to be displayed
      Returns:
      current DamageTextureComponent to allow for chaining
    • addTexture

      public DamageTextureComponent addTexture(int threshold, com.badlogic.gdx.graphics.Texture texture)
      Add a texture with a given threshold such that if health <= threshold then the texture will show.
      Parameters:
      threshold - Threshold to show texture at
      texture - Texture to be displayed
      Returns:
      current DamageTextureComponent to allow for chaining
    • 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.