Update Packages/VRM10/Runtime/IO/ExpressionExtensions.cs

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
ousttrue
2026-02-26 21:38:51 +09:00
parent c774a910d8
commit 62626d3eab

View File

@@ -103,7 +103,7 @@ namespace UniVRM10
: Quaternion.identity;
var s = bind.Scale != null && bind.Scale.Length >= 3
? new Vector3(bind.Scale[0], bind.Scale[1], bind.Scale[2])
: Vector3.zero;
: node.transform.localScale;
return new NodeTransformBinding(relativePath, t, r, s);
}
else