Class ActionFeedbackComponent
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.player.ActionFeedbackComponent
This component is used to create action feedback alerts based on Entity events.
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
create()
Adds two listeners to the entities events which, when invoked, can be used to create and display custom warning alerts.void
displayWarning
(String alert) Displays an alert at the entities current position.void
displayWarningAtPosition
(String alert, com.badlogic.gdx.math.Vector2 position) Displays an alert at the given position.Methods inherited from class com.csse3200.game.components.Component
dispose, earlyUpdate, getEntity, setEnabled, setEntity, toString, triggerEarlyUpdate, triggerUpdate, update
-
Constructor Details
-
ActionFeedbackComponent
public ActionFeedbackComponent()
-
-
Method Details
-
create
public void create()Adds two listeners to the entities events which, when invoked, can be used to create and display custom warning alerts. -
displayWarning
Displays an alert at the entities current position.- Parameters:
alert
- - the text to be displayed.
-
displayWarningAtPosition
Displays an alert at the given position.- Parameters:
alert
- - the text to be displayed.position
- - the position to display the alert.
-