Examples of shouldCrouch()


Examples of micdoodle8.mods.galacticraft.api.item.IHoldableItem.shouldCrouch()

                this.bipedRightArm.rotateAngleX += (float) Math.PI + 0.3;
                this.bipedRightArm.rotateAngleZ -= (float) Math.PI / 10;
            }

            if (player.onGround && holdableItem.shouldCrouch(player))
            {
                this.bipedBody.rotateAngleX = 0.5F;
                this.bipedRightLeg.rotationPointZ = 4.0F;
                this.bipedLeftLeg.rotationPointZ = 4.0F;
                this.bipedRightLeg.rotationPointY = 9.0F;
View Full Code Here

Examples of micdoodle8.mods.galacticraft.api.item.IHoldableItem.shouldCrouch()

                this.modelPlayer.bipedRightArm.rotateAngleX += (float) Math.PI + 0.3;
                this.modelPlayer.bipedRightArm.rotateAngleZ -= (float) Math.PI / 10;
            }

            if (player.onGround && holdableItem.shouldCrouch(player))
            {
                this.modelPlayer.bipedBody.rotateAngleX = 0.35F;
                this.modelPlayer.bipedRightLeg.rotationPointZ = 4.0F;
                this.modelPlayer.bipedLeftLeg.rotationPointZ = 4.0F;
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.