LoadComplete() private method

private LoadComplete ( AssetBundleLoader loader ) : void
loader AssetBundleLoader
return void
 protected virtual void Complete()
 {
     if (onComplete != null)
     {
         var handler = onComplete;
         onComplete = null;
         handler(bundleInfo);
     }
     bundleManager.LoadComplete(this);
 }
Example #2
0
 protected virtual void Complete()
 {
     FireEvent();
     bundleManager.LoadComplete(this);
 }