feat(builder): finish builder

This commit is contained in:
Halyul
2021-06-01 00:29:46 -04:00
parent 92cbbe4a19
commit bddd104f8e
12 changed files with 103 additions and 73 deletions

View File

@@ -4244,6 +4244,7 @@ var spine;
mesh.height = height * scale;
}
mesh.inheritDeform = inheritDeform;
// this.linkedMeshes.push(new LinkedMesh(mesh, skinName, slotIndex, parent_4, inheritDeform));
this.linkedMeshes.push(new LinkedMesh(mesh, skinName, slotIndex, parent_4));
return mesh;
}
@@ -4741,6 +4742,13 @@ var spine;
return BinaryInput;
}());
var LinkedMesh = (function () {
// function LinkedMesh(mesh, skin, slotIndex, parent, inheritDeform) {
// this.mesh = mesh;
// this.skin = skin;
// this.slotIndex = slotIndex;
// this.parent = parent;
// this.inheritDeform = inheritDeform;
// }
function LinkedMesh(mesh, skin, slotIndex, parent) {
this.mesh = mesh;
this.skin = skin;