Пример #1
0
 public GLTFLoader(byte[] gltfData, Transform parent = null)
 {
     _gltfData    = gltfData;
     _sceneParent = parent;
     asyncAction  = new AsyncAction();
 }
Пример #2
0
 public GLTFLoader(string gltfUrl, Transform parent = null)
 {
     _gltfUrl     = gltfUrl;
     _sceneParent = parent;
     asyncAction  = new AsyncAction();
 }