fix: NRE in GetReplacementPath

This commit is contained in:
bd_ 2025-02-16 22:46:44 -08:00
parent 53c47bfb0b
commit a7f3fbc774

View File

@ -178,7 +178,7 @@ namespace nadena.dev.modular_avatar.core.editor
return cached;
}
var obj = asc.ObjectPathRemapper.GetObjectForPath(bindingPath)!.transform;
var obj = asc.ObjectPathRemapper.GetObjectForPath(bindingPath)?.transform;
while (obj != null && transformLookthrough.Contains(obj))
{
obj = obj.parent;