null だと後続で例外。utility なのでフォールバックさせることにした。

This commit is contained in:
ousttrue 2022-05-12 15:45:17 +09:00
parent 8ec52b4327
commit edcfac499f

View File

@ -22,6 +22,11 @@ namespace VRM
throw new FileNotFoundException(path);
}
if (awaitCaller == null)
{
awaitCaller = new ImmediateCaller();
}
using (GltfData data = new AutoGltfFileParser(path).Parse())
{
try