示例#1
0
            public void onSplashAdLoad(AndroidJavaObject handle)
            {
                var ad = new BUSplashAd(handle);

                UnityDispatcher.PostTask(
                    () => this.listener.OnSplashAdLoad(ad));
            }
示例#2
0
 /// <summary>
 /// Load the splash Ad asynchronously and notice on listener.
 /// </summary>
 public void LoadSplashAd(AdSlot adSlot, ISplashAdListener listener)
 {
     BUSplashAd.LoadSplashAd(adSlot, listener, -1);
 }
示例#3
0
 /// <summary>
 /// Load the splash Ad asynchronously and notice on listener with
 /// specify timeout.
 /// </summary>
 public void LoadSplashAd(
     AdSlot adSlot, ISplashAdListener listener, int timeOut)
 {
     BUSplashAd.LoadSplashAd(adSlot, listener, timeOut);
 }