コード例 #1
0
 // Token: 0x06000101 RID: 257 RVA: 0x00006189 File Offset: 0x00004589
 public void didDisplayInterstitialEvent(string location)
 {
     Chartboost.doUnityPause(true, true);
     if (CBExternal.isWebViewEnabled())
     {
         Screen.orientation = Screen.orientation;
     }
     if (Chartboost.didDisplayInterstitial != null)
     {
         Chartboost.didDisplayInterstitial(CBLocation.locationFromName(location));
     }
 }
コード例 #2
0
 // Token: 0x06000111 RID: 273 RVA: 0x000064D8 File Offset: 0x000048D8
 private void didDisplayRewardedVideoEvent(string location)
 {
     Chartboost.doUnityPause(true, true);
     if (CBExternal.isWebViewEnabled())
     {
         Screen.orientation = Screen.orientation;
     }
     if (Chartboost.didDisplayRewardedVideo != null)
     {
         Chartboost.didDisplayRewardedVideo(CBLocation.locationFromName(location));
     }
 }
コード例 #3
0
 // Token: 0x060000FC RID: 252 RVA: 0x000060C0 File Offset: 0x000044C0
 private void didDismissInterstitialEvent(string location)
 {
     Chartboost.doUnityPause(false, false);
     if (CBExternal.isWebViewEnabled())
     {
         Screen.orientation = ScreenOrientation.AutoRotation;
     }
     if (Chartboost.didDismissInterstitial != null)
     {
         Chartboost.didDismissInterstitial(CBLocation.locationFromName(location));
     }
 }