From 255ad03cd20cd49af0e2803b2357ca0b4d0ec18a Mon Sep 17 00:00:00 2001 From: ousttrue Date: Fri, 15 Oct 2021 13:28:13 +0900 Subject: [PATCH] migrate_with_scaling --- Assets/VRM10/Runtime/IO/Vrm10Storage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }