Package com.csse3200.game.rendering
Class DamageTextureComponent
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.rendering.RenderComponent
com.csse3200.game.rendering.DamageTextureComponent
- All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable
,Renderable
,Comparable<Renderable>
A Rendering component used to switch between different textures based on the current entity's health.
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionDamageTextureComponent
(com.badlogic.gdx.graphics.Texture texture) Creates a DamageTextureComponent with the given textureDamageTextureComponent
(String texturePath) Creates a DamageTextureComponent with the given texture -
Method Summary
Modifier and TypeMethodDescriptionaddTexture
(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.addTexture
(int threshold, String texturePath) Add a texture with a given threshold such that if health <= threshold then the texture will show.protected void
draw
(com.badlogic.gdx.graphics.g2d.SpriteBatch batch) Draw the renderable.Methods inherited from class com.csse3200.game.rendering.RenderComponent
compareTo, create, dispose, getLayer, getZIndex, overrideZIndex, render
Methods inherited from class com.csse3200.game.components.Component
earlyUpdate, getEntity, setEnabled, setEntity, toString, triggerEarlyUpdate, triggerUpdate, update
-
Constructor Details
-
DamageTextureComponent
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
Add a texture with a given threshold such that if health <= threshold then the texture will show.- Parameters:
threshold
- Threshold to show texture attexturePath
- Path to texture to be displayed- Returns:
- current DamageTextureComponent to allow for chaining
-
addTexture
Add a texture with a given threshold such that if health <= threshold then the texture will show.- Parameters:
threshold
- Threshold to show texture attexture
- 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 classRenderComponent
- Parameters:
batch
- Batch to render to.
-