Class Portal

java.lang.Object
com.csse3200.game.entities.Entity
com.csse3200.game.entities.Portal

public class Portal extends Entity
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.
  • Constructor Details

    • Portal

      public Portal(Entity player)
      Creates a portal, that will teleport the player entity.
      Parameters:
      player - The player entity
  • Method Details

    • teleport

      public void teleport(Entity player)
      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 class Entity
      Parameters:
      x - new x position
      y - new y position