Esempio n. 1
0
 public StreamingAssetsLoader(Manifest manifest)
 {
     _manifest = new EmbeddedManifest();
     _streamingAssetsPathRoot = Application.streamingAssetsPath + "/bundles/";
     if (Application.platform != RuntimePlatform.Android)
     {
         _streamingAssetsPathRoot = "file://" + _streamingAssetsPathRoot;
     }
 }
Esempio n. 2
0
 public StreamingAssetsLoader()
 {
     _manifest = new EmbeddedManifest();
     _streamingAssetsPathRoot = Utils.Helpers.GetStreamingAssetsPath(Manifest.EmbeddedBundlesBasePath);
 }