diff --git a/Assets/VRM10/Runtime/IO/Vrm10Storage.cs b/Assets/VRM10/Runtime/IO/Vrm10Storage.cs index fd6856238..9c356f4fb 100644 --- a/Assets/VRM10/Runtime/IO/Vrm10Storage.cs +++ b/Assets/VRM10/Runtime/IO/Vrm10Storage.cs @@ -407,7 +407,7 @@ namespace UniVRM10 { node.LocalRotation = x.rotation.ToQuaternion(); } - if (x.scale != null && x.scale.Length == 4) + if (x.scale != null && x.scale.Length == 3) { node.LocalScaling = x.scale.ToVector3(Vector3.One); }