From d982c6b1c92be8ea07260671e67be1a34c0224cb Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Wed, 3 Jul 2019 11:35:57 +0200 Subject: [PATCH] Fixed bug that resulted in vertices being weigthed to the wrong bones. --- src/rendering/models.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/rendering/models.ts b/src/rendering/models.ts index d0fba238..04674900 100644 --- a/src/rendering/models.ts +++ b/src/rendering/models.ts @@ -158,7 +158,7 @@ class Object3DCreator { bone = parent_bone; } else { bone = new Bone(); - bone.name = (this.bone_id++).toString(); + bone.name = this.bone_id.toString(); bone.position.set(position.x, position.y, position.z); bone.setRotationFromEuler(euler); @@ -175,6 +175,8 @@ class Object3DCreator { this.model_to_geometry(object.model, matrix); } + this.bone_id++; + if (!break_child_trace) { for (const child of object.children) { this.object_to_geometry(child, bone, matrix);