mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Fixed bug that resulted in vertices being weigthed to the wrong bones.
This commit is contained in:
parent
7da5505124
commit
d982c6b1c9
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user