Exemplo n.º 1
0
 public GLTFLoader(byte[] gltfData, Transform parent = null)
 {
     _gltfData    = gltfData;
     _sceneParent = parent;
     asyncAction  = new AsyncAction();
 }
Exemplo n.º 2
0
 public GLTFLoader(string gltfUrl, Transform parent = null)
 {
     _gltfUrl     = gltfUrl;
     _sceneParent = parent;
     asyncAction  = new AsyncAction();
 }