From edcfac499fa2dbc3530440f5fdada92ea6b7de72 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Thu, 12 May 2022 15:45:17 +0900 Subject: [PATCH] =?UTF-8?q?null=20=E3=81=A0=E3=81=A8=E5=BE=8C=E7=B6=9A?= =?UTF-8?q?=E3=81=A7=E4=BE=8B=E5=A4=96=E3=80=82utility=20=E3=81=AA?= =?UTF-8?q?=E3=81=AE=E3=81=A7=E3=83=95=E3=82=A9=E3=83=BC=E3=83=AB=E3=83=90?= =?UTF-8?q?=E3=83=83=E3=82=AF=E3=81=95=E3=81=9B=E3=82=8B=E3=81=93=E3=81=A8?= =?UTF-8?q?=E3=81=AB=E3=81=97=E3=81=9F=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/VRM/Runtime/IO/VrmUtility.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Assets/VRM/Runtime/IO/VrmUtility.cs b/Assets/VRM/Runtime/IO/VrmUtility.cs index a29f96762..9a48ce01b 100644 --- a/Assets/VRM/Runtime/IO/VrmUtility.cs +++ b/Assets/VRM/Runtime/IO/VrmUtility.cs @@ -22,6 +22,11 @@ namespace VRM throw new FileNotFoundException(path); } + if (awaitCaller == null) + { + awaitCaller = new ImmediateCaller(); + } + using (GltfData data = new AutoGltfFileParser(path).Parse()) { try