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