Class RotationRenderComponent
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.rendering.RenderComponent
com.csse3200.game.rendering.AtlasRenderComponent
com.csse3200.game.components.structures.RotationRenderComponent
- All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable
,Renderable
,Comparable<Renderable>
This component can be used to display different AtlasRegions depending on the
compass rotation of the entity.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionRotationRenderComponent
(com.badlogic.gdx.graphics.g2d.TextureAtlas atlas, Rotation rotation) RotationRenderComponent
(String atlasPath, Rotation rotation) Creates a RotationRenderComponent with the given atlasPath and rotation. -
Method Summary
Modifier and TypeMethodDescriptionGets the current rotation of the atlas.void
setRotation
(Rotation rotation) Sets the current rotation of the atlas.Methods inherited from class com.csse3200.game.rendering.AtlasRenderComponent
draw, scaleEntity, setRegion, updateTextureAtlas
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
-
Field Details
-
rotation
-
-
Constructor Details
-
RotationRenderComponent
Creates a RotationRenderComponent with the given atlasPath and rotation.- Parameters:
atlasPath
- - the path to the atlas to use.rotation
- - the rotation to begin with.
-
RotationRenderComponent
-
-
Method Details
-
setRotation
Sets the current rotation of the atlas.- Parameters:
rotation
- - the rotation to set the atlas too.
-
getRotation
Gets the current rotation of the atlas.- Returns:
- the current rotation.
-