"class glTF_VRM: gltf" to "partial class glTF_extensions"

This commit is contained in:
ousttrue
2018-07-19 23:05:17 +09:00
parent fd04f556f6
commit 0d47703bd9
12 changed files with 58 additions and 74 deletions

View File

@@ -59,9 +59,9 @@ public class VRMTest
exporter.Export();
// import
context.ParseJson<glTF_VRM>(gltf.ToJson(), new SimpleStorage());
context.ParseJson(gltf.ToJson(), new SimpleStorage());
Debug.LogFormat("{0}", context.Json);
gltfImporter.Import<glTF>(context);
gltfImporter.Import(context);
AssertAreEqual(go.transform, context.Root.transform);
}