fix: NRE when Move Independently is placed on a scene root

Closes: #1317
This commit is contained in:
bd_ 2024-10-25 19:49:34 -07:00
parent e0702c5dcf
commit 3f5ed4a7e9

View File

@ -218,6 +218,8 @@ namespace nadena.dev.modular_avatar.core.ArmatureAwase
return;
}
if (transform.parent == null) return;
var pos = transform.localPosition;
var rot = transform.localRotation;
var scale = transform.localScale;