public void onSplashAdLoad(AndroidJavaObject handle) { var ad = new BUSplashAd(handle); UnityDispatcher.PostTask( () => this.listener.OnSplashAdLoad(ad)); }
/// <summary> /// Load the splash Ad asynchronously and notice on listener. /// </summary> public void LoadSplashAd(AdSlot adSlot, ISplashAdListener listener) { BUSplashAd.LoadSplashAd(adSlot, listener, -1); }
/// <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); }