Exemple #1
0
        void FetchAds()
        {
            foreach (string tag in adsSettings.rewardAdTags)
            {
                HZIncentivizedAd.Fetch(tag);
                Toaster.ShowDebugToast("Fetching 'reward' ad for tag; " + tag);
            }

            //Dont fetch interstitials if NoAds is baught
            if (adsRemoved)
            {
                Toaster.ShowDebugToast("Not fetching other ads because 'Remove_ads' is bought.");
                return;
            }

            HZInterstitialAd.ChartboostFetchForLocation("Default");

            foreach (string tag in adsSettings.staticAdTags)
            {
                HZInterstitialAd.Fetch(tag);
                Toaster.ShowDebugToast("Fetching 'static' ad for tag; " + tag);
            }
            foreach (string tag in adsSettings.videoAdTags)
            {
                HZVideoAd.Fetch(tag);
                Toaster.ShowDebugToast("Fetching 'video' ad for tag; " + tag);
            }
        }
Exemple #2
0
 public void ShowChartboostInterstitial()
 {
     if (canShowAd && !adsRemoved && HZInterstitialAd.ChartboostIsAvailableForLocation("Default"))
     {
         Toaster.ShowDebugToast("Showing Chartboost Interstitial for location; Default");
         HZInterstitialAd.ChartboostShowForLocation("Default");
     }
     else
     {
         Toaster.ShowDebugToast("Can't show Chartboost Interstitial because not available or Ads are removed");
     }
 }
Exemple #3
0
 public void ShowVideoAd()
 {
     if (canShowAd && !adsRemoved && HZVideoAd.IsAvailable())
     {
         Toaster.ShowDebugToast("Showing Video ad");
         HZVideoAd.Show();
     }
     else
     {
         Toaster.ShowDebugToast("Can't show Video ad");
     }
 }
Exemple #4
0
        //Init Heyzap with specific appstore options.......
        void InitHeyZap()
        {
            Toaster.ShowDebugToast("Initializing Heyzap...");

            string heyzapId = adsSettings.heyzapId;

#if (UNITY_ANDROID && WWG_GOOGLE) || UNITY_IOS
            HeyzapAds.Start(heyzapId, HeyzapAds.FLAG_NO_OPTIONS);
#elif WWG_AMAZON && UNITY_ANDROID
            HeyzapAds.Start(heyzapId, HeyzapAds.FLAG_AMAZON);
#endif
        }
Exemple #5
0
 public void ShowInterstitialAd()
 {
     if (canShowAd && !adsRemoved && HZInterstitialAd.IsAvailable())
     {
         Toaster.ShowDebugToast("Showing Interstitial ad");
         HZInterstitialAd.Show();
     }
     else
     {
         Toaster.ShowDebugToast("Cant show Interstitial ad");
     }
 }
Exemple #6
0
        public void ShowRewardAd()
        {
            if (HZIncentivizedAd.IsAvailable())
            {
                Toaster.ShowDebugToast("Showing reward ad.");

                HZIncentivizedAd.Show();
            }
            else
            {
                Toaster.ShowDebugToast("Can't show reward ad");
            }
        }
Exemple #7
0
        public void ShowRewardAd(string tag)
        {
            if (HZIncentivizedAd.IsAvailable(tag))
            {
                Toaster.ShowDebugToast("Showing reward video for tag; " + tag);

                HZIncentivizedShowOptions options = new HZIncentivizedShowOptions();
                options.Tag = tag;
                HZIncentivizedAd.ShowWithOptions(options);
            }
            else
            {
                Toaster.ShowDebugToast("Can't show reward video for tag; " + tag);
            }
        }
Exemple #8
0
        public void ShowBannerAd(string _position)
        {
            if (adsRemoved)
            {
                Toaster.ShowDebugToast("Not showing banner ad because ads are removed");
                return;
            }

            HZBannerShowOptions showOptions = new HZBannerShowOptions();

            showOptions.Position = _position;
            HZBannerAd.ShowWithOptions(showOptions);

            Toaster.ShowDebugToast("Showing banner ad");
        }
Exemple #9
0
        public void ShowVideoAd(string tag)
        {
            if (HZVideoAd.IsAvailable(tag) && canShowAd && !adsRemoved)
            {
                Toaster.ShowDebugToast("Showing Video ad for tag; " + tag);

                HZShowOptions options = new HZShowOptions();
                options.Tag = tag;
                HZVideoAd.ShowWithOptions(options);
            }
            else
            {
                Toaster.ShowDebugToast("Can't show Video ad for tag; " + tag);
            }
        }
Exemple #10
0
        public void ShowInterstitialAd(string tag)
        {
            if (canShowAd && !adsRemoved && HZInterstitialAd.IsAvailable(tag))
            {
                Toaster.ShowDebugToast("Showing Interstitial for tag; " + tag);

                HZShowOptions options = new HZShowOptions();
                options.Tag = tag;
                HZInterstitialAd.ShowWithOptions(options);
            }
            else
            {
                Toaster.ShowDebugToast("Can't show Interstitial for tag; " + tag);
            }
        }
Exemple #11
0
        void SetRewardAdListener()
        {
            HZIncentivizedAd.AdDisplayListener listener = delegate(string adState, string adTag)
            {
                if (adState.Equals("show"))
                {
                    //Ad showing, pause game
                }
                if (adState.Equals("hide"))
                {
                    //Ad gone, unpause game
                }
                if (adState.Equals("click"))
                {
                }
                if (adState.Equals("failed"))
                {
                }
                if (adState.Equals("available"))
                {
                }
                if (adState.Equals("fetch_failed"))
                {
                }
                if (adState.Equals("audio_starting"))
                {
                    //mute game sound
                }
                if (adState.Equals("audio_finished"))
                {
                    //unmute game sound
                }
                if (adState.Equals("incentivized_result_complete"))
                {
                    //reward player here
                    OnRewardAdCompleted(adTag);
                    Toaster.ShowDebugToast("Reward ad Conpleted for tag; " + adTag);
                }
                if (adState.Equals("incentivized_result_incomplete"))
                {
                    OnRewardAdSkipped(adTag);
                    Toaster.ShowDebugToast("Reward ad 'Skipped' for tag; " + adTag);
                }
            };

            HZIncentivizedAd.SetDisplayListener(listener);
        }
Exemple #12
0
 public bool IsRewardVideoAvailable(string tag)
 {
     Toaster.ShowDebugToast("IsRewardVideoAvailable for tag; " + tag + " = " + HZIncentivizedAd.IsAvailable(tag));
     return(HZIncentivizedAd.IsAvailable(tag));
 }
Exemple #13
0
 /// <summary>
 /// returns true if this instance is reward video available; otherwise, <c>false</c>.
 /// </summary>
 ///
 public bool IsRewardVideoAvailable()
 {
     Toaster.ShowDebugToast("IsRewardVideoAvailable: " + HZIncentivizedAd.IsAvailable());
     return(HZIncentivizedAd.IsAvailable());
 }
Exemple #14
0
 public void DestroyBanner()
 {
     HZBannerAd.Destroy();
     Toaster.ShowDebugToast("Destroying banner ad");
 }
Exemple #15
0
 public void HideBanner()
 {
     HZBannerAd.Hide();
     Toaster.ShowDebugToast("Hiding banner ad");
 }