// Token: 0x060000B8 RID: 184 RVA: 0x000036AC File Offset: 0x000018AC
 public static void ShowWithOptions(HZIncentivizedShowOptions showOptions)
 {
     if (showOptions == null)
     {
         showOptions = new HZIncentivizedShowOptions();
     }
     HZIncentivizedAdAndroid.ShowWithOptions(showOptions);
 }
Exemplo n.º 2
0
        /// <summary>
        /// Shows an ad with the given options.
        /// </summary>
        /// <param name="showOptions"> The options to show the ad with, or the default options if <c>null</c></param>
        public static void ShowWithOptions(HZIncentivizedShowOptions showOptions)
        {
            if (showOptions == null)
            {
                showOptions = new HZIncentivizedShowOptions();
            }

            #if UNITY_ANDROID
            HZIncentivizedAdAndroid.ShowWithOptions(showOptions);
            #endif

            #if UNITY_IPHONE && !UNITY_EDITOR
            HZIncentivizedAdIOS.ShowWithOptions(showOptions);
            #endif
        }
Exemplo n.º 3
0
        /// <summary>
        /// Shows an ad with the given options.
        /// </summary>
        /// <param name="showOptions"> The options to show the ad with, or the default options if <c>null</c></param>
        public static void ShowWithOptions(HZIncentivizedShowOptions showOptions)
        {
            if (showOptions == null)
            {
                showOptions = new HZIncentivizedShowOptions();
            }

            #if !UNITY_EDITOR && (UNITY_ANDROID || UNITY_IPHONE)
                #if UNITY_ANDROID
            HZIncentivizedAdAndroid.ShowWithOptions(showOptions);
                #elif UNITY_IPHONE
            HZIncentivizedAdIOS.ShowWithOptions(showOptions);
                #endif
            #else
            UnityEngine.Debug.LogWarning("Call received to show an HZIncentivizedAd, but the SDK does not function in the editor. You must use a device/emulator to fetch/show ads.");
            _instance.StartCoroutine(InvokeCallbackNextFrame(HeyzapAds.NetworkCallback.SHOW_FAILED, showOptions.Tag));
            #endif
        }