本文整理汇总了Java中net.minecraft.entity.Entity.getEntityData方法的典型用法代码示例。如果您正苦于以下问题:Java Entity.getEntityData方法的具体用法?Java Entity.getEntityData怎么用?Java Entity.getEntityData使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.entity.Entity
的用法示例。
在下文中一共展示了Entity.getEntityData方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onEntityCollidedWithBlock
import net.minecraft.entity.Entity; //导入方法依赖的package包/类
@Override
public void onEntityCollidedWithBlock(World world, int x, int y, int z, Entity entity) {
NBTTagCompound data = entity.getEntityData();
if (data.hasKey(Reference.MOD_ID + ":slime")) {
entity.motionY = data.getDouble(Reference.MOD_ID + ":slime");
data.removeTag(Reference.MOD_ID + ":slime");
}
if (Math.abs(entity.motionY) < 0.1 && !entity.isSneaking()) {
double d = 0.4 + Math.abs(entity.motionY) * 0.2;
entity.motionX *= d;
entity.motionZ *= d;
}
}
示例2: getNBTData
import net.minecraft.entity.Entity; //导入方法依赖的package包/类
@Override
public NBTTagCompound getNBTData(EntityPlayerMP player, Entity ent, NBTTagCompound tag, World world) {
return ent.getEntityData();
}