From 62626d3eab5a9ede63e8cb43fb01cd8ce7e0b1d1 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Thu, 26 Feb 2026 21:38:51 +0900 Subject: [PATCH] Update Packages/VRM10/Runtime/IO/ExpressionExtensions.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Packages/VRM10/Runtime/IO/ExpressionExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Packages/VRM10/Runtime/IO/ExpressionExtensions.cs b/Packages/VRM10/Runtime/IO/ExpressionExtensions.cs index 41729d9b3..8120c52d1 100644 --- a/Packages/VRM10/Runtime/IO/ExpressionExtensions.cs +++ b/Packages/VRM10/Runtime/IO/ExpressionExtensions.cs @@ -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