public class PlayerRespawnEvent extends PlayerEvent implements Cancellable
PlayerDeathEvent
,
PlayerSpawnEvent
Constructor and Description |
---|
PlayerRespawnEvent(Player player,
Vector3f spawnPosition,
Quaternion spawnRotation,
boolean keepInventory) |
Modifier and Type | Method and Description |
---|---|
Vector3f |
getSpawnPosition()
Gets the spawn position.
|
Quaternion |
getSpawnRotation()
Gets the spawn rotation.
|
boolean |
isCancelled()
Determines if the event is cancelled.
|
boolean |
isKeepingInventory()
Gets whether or not the player will keep his inventory upon respawn.
|
void |
setCancelled(boolean cancel)
Cancels this event.
|
void |
setKeepInventory(boolean set)
Setting this to true causes the player to keep his current inventory.
|
void |
setSpawnPosition(float x,
float y,
float z)
Sets the spawn position of the player.
|
void |
setSpawnPosition(Vector3f position)
Sets the spawn position of the player.
|
void |
setSpawnRotation(Quaternion rotation)
Sets the spawn rotation of the player.
|
getPlayer
public PlayerRespawnEvent(Player player, Vector3f spawnPosition, Quaternion spawnRotation, boolean keepInventory)
public Vector3f getSpawnPosition()
public Quaternion getSpawnRotation()
public void setSpawnPosition(Vector3f position)
position
- a Vector3f containing the global spawn coordinates.public void setSpawnPosition(float x, float y, float z)
x
- global X spawn coordinate.y
- global Y spawn coordinate.z
- global Z spawn coordinate.public void setSpawnRotation(Quaternion rotation)
rotation
- a Quaternion which describes the spawn rotation.public void setKeepInventory(boolean set)
set
- true to let the player keep his inventory, or false if you want
him to respawn with the default spawn inventory.public boolean isKeepingInventory()
setKeepInventory(boolean)
),
or if the particular player permission (general_keepinventory
) is set to true.public boolean isCancelled()
Cancellable
isCancelled
in interface Cancellable
public void setCancelled(boolean cancel)
Cancellable
setCancelled
in interface Cancellable
cancel
- set to true if you want to cancel this event.