本文整理了Java中org.bukkit.entity.Entity.getTicksLived()
方法的一些代码示例,展示了Entity.getTicksLived()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Entity.getTicksLived()
方法的具体详情如下:
包路径:org.bukkit.entity.Entity
类名称:Entity
方法名:getTicksLived
[英]Gets the amount of ticks this entity has lived for.
This is the equivalent to "age" in entities.
[中]获取此实体的生存时间。
这相当于实体中的“年龄”。
代码示例来源:origin: EngineHub/CommandHelper
@Override
public int getTicksLived() {
return e.getTicksLived();
}
代码示例来源:origin: bergerkiller/BKCommonLib
@Override
public int getTicksLived() {
return base.getTicksLived();
}
代码示例来源:origin: bergerkiller/BKCommonLib
public int getTicksLived() {
return entity.getTicksLived();
}
代码示例来源:origin: eccentricdevotion/TARDIS
tm.setAge(e.getTicksLived());
tm.setHealth(((LivingEntity) e).getHealth());
tm.setName(e.getCustomName());
内容来源于网络,如有侵权,请联系作者删除!