From f0d6af93c52e99f85ef1f8d2b5fda47062fce5d6 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Wed, 9 Nov 2022 15:08:23 +0900 Subject: [PATCH] hide box man --- Assets/VRM10_Samples/VRM10Viewer/VRM10ViewerUI.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/VRM10_Samples/VRM10Viewer/VRM10ViewerUI.cs b/Assets/VRM10_Samples/VRM10Viewer/VRM10ViewerUI.cs index 2dc4e95e6..806270b77 100644 --- a/Assets/VRM10_Samples/VRM10Viewer/VRM10ViewerUI.cs +++ b/Assets/VRM10_Samples/VRM10Viewer/VRM10ViewerUI.cs @@ -206,7 +206,6 @@ namespace UniVRM10.VRM10Viewer if (File.Exists(cmds[i])) { LoadModel(cmds[i]); - break; } } @@ -225,6 +224,8 @@ namespace UniVRM10.VRM10Viewer context.Load(); m_src = context.Root.GetComponent(); m_ui.IsBvhEnabled = true; + // hide box man + context.Root.GetComponent().enabled = false; } private void Update()