Class PopupComponent
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.resources.PopupComponent
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionPopupComponent
(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. -
Method Summary
Methods inherited from class com.csse3200.game.components.Component
create, dispose, earlyUpdate, getEntity, setEnabled, setEntity, toString, triggerEarlyUpdate, triggerUpdate
-
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 cleanupspeed
- 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. -
setTimer
Overrides the generated timer, in case you want to prolong the life, pause the popup, etc (useful for testing)- Parameters:
gameTime
- the new gameTime
-