Add EntityToggleSwimEvent and isSwimming / setSwimming API

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2018-07-15 16:17:23 +10:00
parent 767e4f6ccf
commit f4424f852e
2 changed files with 59 additions and 0 deletions

View File

@@ -325,6 +325,22 @@ public interface LivingEntity extends Attributable, Entity, Damageable, Projecti
*/
public void setGliding(boolean gliding);
/**
* Checks to see if an entity is swimming.
*
* @return True if this entity is swimming.
*/
public boolean isSwimming();
/**
* Makes entity start or stop swimming.
*
* This may have unexpected results if the entity is not in water.
*
* @param swimming True if the entity is swimming.
*/
public void setSwimming(boolean swimming);
/**
* Sets whether an entity will have AI.
*