Skip to content

Commit c7ab8f9

Browse files
authored
fix #201 (#202)
1 parent ca6d190 commit c7ab8f9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/model.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ export class SkinObject extends Group {
174174
rightArmPivot.add(rightArmMesh, rightArm2Mesh);
175175
this.modelListeners.push(() => {
176176
rightArmPivot.position.x = this.slim ? -0.5 : -1;
177+
rightArmPivot.position.y = this.slim ? -4.5 : -4;
177178
});
178-
rightArmPivot.position.y = -4;
179179

180180
this.rightArm = new BodyPart(rightArmMesh, rightArm2Mesh);
181181
this.rightArm.name = "rightArm";
@@ -207,8 +207,8 @@ export class SkinObject extends Group {
207207
leftArmPivot.add(leftArmMesh, leftArm2Mesh);
208208
this.modelListeners.push(() => {
209209
leftArmPivot.position.x = this.slim ? 0.5 : 1;
210+
leftArmPivot.position.y = this.slim ? -4.5 : -4;
210211
});
211-
leftArmPivot.position.y = -4;
212212

213213
this.leftArm = new BodyPart(leftArmMesh, leftArm2Mesh);
214214
this.leftArm.name = "leftArm";

0 commit comments

Comments
 (0)