Package com.csse3200.game.entities
Class Portal
java.lang.Object
com.csse3200.game.entities.Entity
com.csse3200.game.entities.Portal
Portal class which extends Entity. Creates a Portal that if the player is within a certain amount
distance it will teleport the player to the set position on the map.
-
Field Summary
Fields inherited from class com.csse3200.game.entities.Entity
components
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setPosition
(float x, float y) Sets the teleport location.void
Teleports the player to a fixed destinationMethods inherited from class com.csse3200.game.entities.Entity
addComponent, create, dispose, earlyUpdate, equals, getCenterPosition, getComponent, getComponents, getEntityType, getEvents, getGridPosition, getId, getPosition, getScale, hashCode, scaleHeight, scaleWidth, setEnabled, setEntityType, setPosition, setPosition, setScale, setScale, toString, update
-
Constructor Details
-
Portal
Creates a portal, that will teleport the player entity.- Parameters:
player
- The player entity
-
-
Method Details
-
teleport
Teleports the player to a fixed destination- Parameters:
player
- - the player entering the portal
-
setPosition
public void setPosition(float x, float y) Sets the teleport location.- Overrides:
setPosition
in classEntity
- Parameters:
x
- new x positiony
- new y position
-