roavatar-renderer 1.5.4 → 1.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -48262,6 +48262,11 @@ class HumanoidDescriptionWrapper extends InstanceWrapper {
|
|
|
48262
48262
|
} else {
|
|
48263
48263
|
const head2 = dataModel.FindFirstChildOfClass("MeshPart");
|
|
48264
48264
|
if (head2) {
|
|
48265
|
+
for (const childChild of head2.GetChildren()) {
|
|
48266
|
+
if (childChild.w?.IsA("Weld") || childChild.w?.IsA("AnimationConstraint")) {
|
|
48267
|
+
childChild.Destroy();
|
|
48268
|
+
}
|
|
48269
|
+
}
|
|
48265
48270
|
replaceBodyPart(rig, head2);
|
|
48266
48271
|
}
|
|
48267
48272
|
}
|