示例#1
0
 void HandleOnInterstitialClosed(object sender, EventArgs args)
 {
     isInterstitialAdClose     = true;
     loadState_interstitialAds = AdFactory.AdsLoadState.Complete;
 }
示例#2
0
 void HandleOnInterstitialLoaded(object sender, EventArgs args)
 {
     // Handle the ad loaded event.
     loadState_interstitialAds = AdFactory.AdsLoadState.Loaded;
 }
示例#3
0
 void HandleOnInterstitialFailedToLoad(object sender, EventArgs args)
 {
     loadState_interstitialAds = AdFactory.AdsLoadState.Failed;
 }
 void InterstitialAdReadyEvent()
 {
     loadState_interstitialAds = AdFactory.AdsLoadState.Loaded;
     isInterstitialLoading     = false;
     Debug.Log("unity-script: I got InterstitialAdReadyEvent");
 }