Beispiel #1
0
 private void OnAssetBundleManagerInitialized(bool success)
 {
     if (success)
     {
         abm.GetBundle("BundleNameHere", OnAssetBundleDownloaded);
     }
     else
     {
         Debug.LogError("Error initializing ABM.");
     }
 }
Beispiel #2
0
 private void OnAssetBundleManagerInitialized()
 {
     abm.GetBundle("BundleNameHere", OnAssetBundleDownloaded);
 }