コード例 #1
0
 private void OnAssetBundleManagerInitialized(bool success)
 {
     if (success)
     {
         abm.GetBundle("BundleNameHere", OnAssetBundleDownloaded);
     }
     else
     {
         Debug.LogError("Error initializing ABM.");
     }
 }
コード例 #2
0
ファイル: Example1.cs プロジェクト: bmjoy/AssetBundleManager
 private void OnAssetBundleManagerInitialized()
 {
     abm.GetBundle("BundleNameHere", OnAssetBundleDownloaded);
 }