Class HealthBarComponent

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

public class HealthBarComponent extends UIComponent
A ui component for displaying an entities health at its location on the map.
  • Constructor Details

    • HealthBarComponent

      public HealthBarComponent(boolean center, float offsetY, float width)
    • HealthBarComponent

      public HealthBarComponent(boolean center)
  • Method Details

    • create

      public void create()
      Creates reusable ui styles and adds actors to map
      Overrides:
      create in class UIComponent
    • draw

      public void draw(com.badlogic.gdx.graphics.g2d.SpriteBatch batch)
      Override the draw method in order to make the UI elements display smaller on the map. Does this by making the projectionMatrix a smaller scale when drawing the UI components, before reverting to the original projectionMatrix after.
      Specified by:
      draw in class RenderComponent
      Parameters:
      batch - the SpriteBatch being used to render the table.
      See Also:
    • updateHealth

      public void updateHealth(int health)
      Updates the Wall's health on the ui.
      Parameters:
      health - player health
    • dispose

      public void dispose()
      Description copied from class: Component
      Called when the component is disposed. Dispose of any internal resources here.
      Specified by:
      dispose in interface com.badlogic.gdx.utils.Disposable
      Overrides:
      dispose in class RenderComponent
    • show

      public void show()
    • hide

      public void hide()
    • getHealthBar

      public com.badlogic.gdx.scenes.scene2d.ui.ProgressBar getHealthBar()