Class Spawnpoint

java.lang.Object
de.gurkenlabs.litiengine.entities.Entity
de.gurkenlabs.litiengine.entities.Spawnpoint
All Implemented Interfaces:
EntityRenderedListener, EntityRenderListener, IEntity, Tweenable, java.util.EventListener

public class Spawnpoint
extends Entity
  • Constructor Details

    • Spawnpoint

      public Spawnpoint()
      Instantiates a new Spawnpoint entity.
    • Spawnpoint

      public Spawnpoint​(double x, double y)
      Instantiates a new Spawnpoint entity.
      Parameters:
      x - The x-coordinate of this instance.
      y - The y-coordinate of this instance.
    • Spawnpoint

      public Spawnpoint​(java.awt.geom.Point2D location)
    • Spawnpoint

      public Spawnpoint​(double x, double y, Direction direction)
    • Spawnpoint

      public Spawnpoint​(java.awt.geom.Point2D location, Direction direction)
    • Spawnpoint

      public Spawnpoint​(int mapId, double x, double y)
      Instantiates a new Spawnpoint entity.
      Parameters:
      mapId - The map id of this instance.
      x - The x-coordinate of this instance.
      y - The y-coordinate of this instance.
    • Spawnpoint

      public Spawnpoint​(int mapId, java.awt.geom.Point2D location)
      Instantiates a new Spawnpoint entity.
      Parameters:
      mapId - The map id of this instance.
      location - The location of this instance.
    • Spawnpoint

      public Spawnpoint​(int mapId, double x, double y, Direction direction)
      Instantiates a new Spawnpoint entity.
      Parameters:
      mapId - The map id of this instance.
      x - The x-coordinate of this instance.
      y - The y-coordinate of this instance.
      direction - The direction in which entities will be spawned by this instance.
    • Spawnpoint

      public Spawnpoint​(int mapId, java.awt.geom.Point2D location, Direction direction)
      Instantiates a new Spawnpoint entity.
      Parameters:
      mapId - The map id of this instance.
      location - The location of this instance.
      direction - The direction in which entities will be spawned by this instance.
    • Spawnpoint

      public Spawnpoint​(Direction direction)
      Instantiates a new Spawnpoint entity.
      Parameters:
      direction - The direction in which entities will be spawned by this instance.
    • Spawnpoint

      public Spawnpoint​(Direction direction, java.lang.String spawnType)
      Instantiates a new Spawnpoint entity.
      Parameters:
      direction - The direction in which entities will be spawned by this instance.
      spawnType - The type that defines additional information about the entities spawned by this instance.
  • Method Details