mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-16 06:30:46 +01:00
Add Entity Body Yaw API
This commit is contained in:
parent
7e5c1f612a
commit
1a9500ec94
2 changed files with 55 additions and 0 deletions
|
@ -1041,6 +1041,43 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
|
||||||
* @return true if in powdered snow.
|
* @return true if in powdered snow.
|
||||||
*/
|
*/
|
||||||
boolean isInPowderedSnow();
|
boolean isInPowderedSnow();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the x-coordinate of this entity
|
||||||
|
*
|
||||||
|
* @return x-coordinate
|
||||||
|
*/
|
||||||
|
double getX();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the y-coordinate of this entity
|
||||||
|
*
|
||||||
|
* @return y-coordinate
|
||||||
|
*/
|
||||||
|
double getY();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the z-coordinate of this entity
|
||||||
|
*
|
||||||
|
* @return z-coordinate
|
||||||
|
*/
|
||||||
|
double getZ();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets this entity's pitch
|
||||||
|
*
|
||||||
|
* @see Location#getPitch()
|
||||||
|
* @return the entity's pitch
|
||||||
|
*/
|
||||||
|
float getPitch();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets this entity's yaw
|
||||||
|
*
|
||||||
|
* @see Location#getYaw()
|
||||||
|
* @return the entity's yaw
|
||||||
|
*/
|
||||||
|
float getYaw();
|
||||||
// Paper end
|
// Paper end
|
||||||
|
|
||||||
// Paper start - Collision API
|
// Paper start - Collision API
|
||||||
|
|
|
@ -1424,4 +1424,22 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource
|
||||||
*/
|
*/
|
||||||
void damageItemStack(org.bukkit.inventory.@NotNull EquipmentSlot slot, int amount);
|
void damageItemStack(org.bukkit.inventory.@NotNull EquipmentSlot slot, int amount);
|
||||||
// Paper end - ItemStack damage API
|
// Paper end - ItemStack damage API
|
||||||
|
|
||||||
|
// Paper start - body yaw API
|
||||||
|
/**
|
||||||
|
* Gets entity body yaw
|
||||||
|
*
|
||||||
|
* @return entity body yaw
|
||||||
|
* @see Location#getYaw()
|
||||||
|
*/
|
||||||
|
float getBodyYaw();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets entity body yaw
|
||||||
|
*
|
||||||
|
* @param bodyYaw new entity body yaw
|
||||||
|
* @see Location#setYaw(float)
|
||||||
|
*/
|
||||||
|
void setBodyYaw(float bodyYaw);
|
||||||
|
// Paper end - body yaw API
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue