Class PopupComponent

java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.resources.PopupComponent

public class PopupComponent extends Component
  • Constructor Details

    • PopupComponent

      public PopupComponent(int duration, double speed)
      Popup Component a component which can be attached to an existing entity to delete it in a fancy way! The entity MUST have a RenderTextureComponent. when attached (with a duration and speed) this component will fade the entity upwards and out of sight over the duration, disposing of it properly afterwards.
      Parameters:
      duration - the amount of time (ms) before cleanup
      speed - the speed of the popups motion
  • Method Details

    • update

      public void update()
      Description copied from class: Component
      Called once per frame of the game, and should be used for most component logic. Not called if component is disabled.
      Overrides:
      update in class Component
    • setTimer

      public void setTimer(GameTime gameTime)
      Overrides the generated timer, in case you want to prolong the life, pause the popup, etc (useful for testing)
      Parameters:
      gameTime - the new gameTime