From ae8a66f5254c231fb40bd2369adb6e2495f3922d Mon Sep 17 00:00:00 2001 From: James Harrison Date: Thu, 17 Sep 2020 14:55:05 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=89Changed=20elytra=20rotation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/model.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/model.ts b/src/model.ts index a50f1b9..98a12c7 100644 --- a/src/model.ts +++ b/src/model.ts @@ -465,7 +465,6 @@ export class ElytraObject extends Group { this.leftWing.position.x = 3; // Left - right this.leftWing.position.y = -1.5; //Up - down - this.leftWing.rotation.x = 0.2617994; this.leftWing.rotation.y = 0; this.leftWing.rotation.z = -0.19; this.add(this.leftWing); @@ -494,7 +493,6 @@ export class ElytraObject extends Group { this.rightWing.position.x = -3; // Left - right this.rightWing.position.y = -1.5; //Up - down - this.rightWing.rotation.x = 0.2617994; //0.2617994 this.rightWing.rotation.y = 0; this.rightWing.rotation.z = 0.19; this.add(this.rightWing); @@ -572,6 +570,7 @@ export class PlayerObject extends Group { this.elytra.name = "elytra"; this.elytra.position.y = -7; this.elytra.position.z = -2; + this.elytra.rotation.x = 10.8 * Math.PI / 180; this.elytra.visible = false; this.add(this.elytra);