Class PowerupComponent

java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.PowerupComponent

public class PowerupComponent extends Component
Represents a power-up component within the game.
  • Constructor Details

    • PowerupComponent

      public PowerupComponent(PowerupType type)
      Assigns a type and targetLayer value to a given Powerup
  • Method Details

    • create

      public void create()
      Overrides the Component create() function
      Overrides:
      create in class Component
    • applyEffect

      public void applyEffect()
      Applies the effects of the Powerup to the specified target entity.
    • setDuration

      public void setDuration(long duration)
      Sets the duration for which the Powerup effect should last.
      Parameters:
      duration - Duration in milliseconds.
    • getDuration

      public long getDuration()
      Retrieves the duration for which the Powerup effect should last.
      Returns:
      Duration in milliseconds.
    • getType

      public PowerupType getType()
      Retrieves the type of the Powerup.
      Returns:
      The current Powerup type.
    • setType

      public void setType(PowerupType type)
      Sets the type of the Powerup.
      Parameters:
      type - The type to set.