From ae48acfff778facc648f764f6c39d2579083bcdc Mon Sep 17 00:00:00 2001 From: Haowei Wen Date: Sat, 12 Sep 2020 17:20:54 +0800 Subject: [PATCH] change default rotation angle of cape to 10.8 deg --- src/model.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model.ts b/src/model.ts index 9ff6996..7a0992b 100644 --- a/src/model.ts +++ b/src/model.ts @@ -432,7 +432,7 @@ export class PlayerObject extends Group { this.cape.name = "cape"; this.cape.position.z = -2; this.cape.position.y = -4; - this.cape.rotation.x = 25 * Math.PI / 180; + this.cape.rotation.x = 10.8 * Math.PI / 180; this.add(this.cape); } }