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