public class PlayerHitEvent extends PlayerEvent implements Cancellable
PlayerDamageEvent
Constructor and Description |
---|
PlayerHitEvent(Player player,
Player targetPlayer,
Vector3f damagePoint,
short damage,
float distance) |
Modifier and Type | Method and Description |
---|---|
short |
getDamage()
Gets the amount of damage this hit will cause.
|
Vector3f |
getDamagePosition()
Gets the coordinates where the player was hit exactly.
|
float |
getDistance()
Gets the distance between the player and the target player (or more precisely,
the damage point).
|
Player |
getTargetPlayer()
Gets the target player, i.e. the player who was hit.
|
boolean |
isCancelled()
Determines if the event is cancelled.
|
void |
setCancelled(boolean cancel)
Cancels this event.
|
void |
setDamage(short damage)
Sets the amount of damage that will be caused by this hit.
|
void |
setDamagePosition(float x,
float y,
float z)
Sets the coordinates where the player was hit exactly.
|
void |
setDamagePosition(Vector3f position)
Sets the coordinates where the player was hit exactly.
|
getPlayer
public Player getTargetPlayer()
public void setDamagePosition(Vector3f position)
position
- the new position.public void setDamagePosition(float x, float y, float z)
x
- the x coordinate.y
- the y coordinate.z
- the z coordinate.public Vector3f getDamagePosition()
public void setDamage(short damage)
damage
- the new damage amount.public short getDamage()
public float getDistance()
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.