Class ActionFeedbackComponent

java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.player.ActionFeedbackComponent

public class ActionFeedbackComponent extends Component
This component is used to create action feedback alerts based on Entity events.
  • 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.
      Overrides:
      create in class Component
    • displayWarning

      public void displayWarning(String alert)
      Displays an alert at the entities current position.
      Parameters:
      alert - - the text to be displayed.
    • displayWarningAtPosition

      public void displayWarningAtPosition(String alert, com.badlogic.gdx.math.Vector2 position)
      Displays an alert at the given position.
      Parameters:
      alert - - the text to be displayed.
      position - - the position to display the alert.