This commit is contained in:
yushijinhun 2020-05-24 12:05:53 +08:00
parent ed22ce6953
commit 39af9967d7
No known key found for this signature in database
GPG Key ID: 5BC167F73EA558E4
1 changed files with 4 additions and 4 deletions

View File

@ -210,12 +210,12 @@ export class SkinObject extends Group {
const rightArmPivot = new Group(); const rightArmPivot = new Group();
rightArmPivot.add(rightArmMesh, rightArm2Mesh); rightArmPivot.add(rightArmMesh, rightArm2Mesh);
rightArmPivot.position.y = -6; rightArmPivot.position.y = -4;
this.rightArm = new BodyPart(rightArmMesh, rightArm2Mesh); this.rightArm = new BodyPart(rightArmMesh, rightArm2Mesh);
this.rightArm.name = "rightArm"; this.rightArm.name = "rightArm";
this.rightArm.add(rightArmPivot); this.rightArm.add(rightArmPivot);
this.rightArm.position.y = -4; this.rightArm.position.y = -6;
this.modelListeners.push(() => { this.modelListeners.push(() => {
this.rightArm.position.x = this.slim ? -5.5 : -6; this.rightArm.position.x = this.slim ? -5.5 : -6;
}); });
@ -283,12 +283,12 @@ export class SkinObject extends Group {
const leftArmPivot = new Group(); const leftArmPivot = new Group();
leftArmPivot.add(leftArmMesh, leftArm2Mesh); leftArmPivot.add(leftArmMesh, leftArm2Mesh);
leftArmPivot.position.y = -6; leftArmPivot.position.y = -4;
this.leftArm = new BodyPart(leftArmMesh, leftArm2Mesh); this.leftArm = new BodyPart(leftArmMesh, leftArm2Mesh);
this.leftArm.name = "leftArm"; this.leftArm.name = "leftArm";
this.leftArm.add(leftArmPivot); this.leftArm.add(leftArmPivot);
this.leftArm.position.y = -4; this.leftArm.position.y = -6;
this.modelListeners.push(() => { this.modelListeners.push(() => {
this.leftArm.position.x = this.slim ? 5.5 : 6; this.leftArm.position.x = this.slim ? 5.5 : 6;
}); });