Removed arm animations
Some checks failed
build / build (push) Has been cancelled

This commit is contained in:
2025-07-30 20:30:32 -04:00
parent ef8207ff07
commit 67ba467afd
2 changed files with 11 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ public abstract class BipedEntityModelMixin<T extends BipedEntityRenderState> {
if (bipedEntityRenderState.isGliding) { if (bipedEntityRenderState.isGliding) {
BipedEntityModel<T> self = (BipedEntityModel<T>) (Object) this; BipedEntityModel<T> self = (BipedEntityModel<T>) (Object) this;
// Legs
self.leftLeg.pitch = 0; self.leftLeg.pitch = 0;
self.leftLeg.yaw = 0; self.leftLeg.yaw = 0;
self.leftLeg.roll = 0; self.leftLeg.roll = 0;
@@ -25,6 +26,15 @@ public abstract class BipedEntityModelMixin<T extends BipedEntityRenderState> {
self.rightLeg.pitch = 0; self.rightLeg.pitch = 0;
self.rightLeg.yaw = 0; self.rightLeg.yaw = 0;
self.rightLeg.roll = 0; self.rightLeg.roll = 0;
// Arms
self.leftArm.pitch = 0;
self.leftArm.yaw = 0;
self.leftArm.roll = 0;
self.rightArm.pitch = 0;
self.rightArm.yaw = 0;
self.rightArm.roll = 0;
} }
} }

View File

@@ -3,7 +3,7 @@
"id": "lifeless-flight", "id": "lifeless-flight",
"version": "${version}", "version": "${version}",
"name": "Lifeless Flight", "name": "Lifeless Flight",
"description": "Removes the leg animation from elytra flight.", "description": "Removes the leg and arm animations from elytra flight.",
"authors": [ "authors": [
"Advait" "Advait"
], ],