本文整理汇总了Java中net.minecraft.entity.boss.EntityWither.getHeadYRotation方法的典型用法代码示例。如果您正苦于以下问题:Java EntityWither.getHeadYRotation方法的具体用法?Java EntityWither.getHeadYRotation怎么用?Java EntityWither.getHeadYRotation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.entity.boss.EntityWither
的用法示例。
在下文中一共展示了EntityWither.getHeadYRotation方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setLivingAnimations
import net.minecraft.entity.boss.EntityWither; //导入方法依赖的package包/类
/**
* Used for easily adding entity-dependent animations. The second and third float params here are the same second
* and third as in the setRotationAngles method.
*/
public void setLivingAnimations(EntityLivingBase entitylivingbaseIn, float p_78086_2_, float p_78086_3_, float partialTickTime)
{
EntityWither entitywither = (EntityWither)entitylivingbaseIn;
for (int i = 1; i < 3; ++i)
{
this.heads[i].rotateAngleY = (entitywither.getHeadYRotation(i - 1) - entitylivingbaseIn.renderYawOffset) * 0.017453292F;
this.heads[i].rotateAngleX = entitywither.getHeadXRotation(i - 1) * 0.017453292F;
}
}
示例2: getHeadYaw
import net.minecraft.entity.boss.EntityWither; //导入方法依赖的package包/类
@Override
public float getHeadYaw(EntityWither living, float partialTick, int eye)
{
if(eye <= 1)
{
return super.getHeadYaw(living, partialTick, eye);
}
else
{
return living.getHeadYRotation(eye <= 3 ? 1 : 0) - (living.prevRenderYawOffset + ((living.renderYawOffset - living.prevRenderYawOffset) * partialTick));
}
}