Esempio n. 1
0
        /// <summary>
        /// Hides the current banner ad, if there is one, from the view. The next call to ShowWithOptions will unhide the banner ad hidden by this method.
        /// </summary>
        public static void Hide()
        {
            #if UNITY_ANDROID
            HZBannerAdAndroid.Hide();
            #endif

            #if UNITY_IPHONE && !UNITY_EDITOR
            HZBannerAdIOS.Hide();
            #endif
        }
Esempio n. 2
0
 /// <summary>
 /// Hides the current banner ad, if there is one, from the view. The next call to ShowWithOptions will unhide the banner ad hidden by this method.
 /// </summary>
 public static void Hide()
 {
     #if !UNITY_EDITOR && (UNITY_ANDROID || UNITY_IPHONE)
         #if UNITY_ANDROID
     HZBannerAdAndroid.Hide();
         #elif UNITY_IPHONE
     HZBannerAdIOS.Hide();
         #endif
     #else
     #endif
 }
Esempio n. 3
0
 // Token: 0x0600009E RID: 158 RVA: 0x00003369 File Offset: 0x00001569
 public static void Hide()
 {
     HZBannerAdAndroid.Hide();
 }