public void DestroyButton() { if (this.SelectedAdType == AdType.Banner) { this.console.Append("Destroying Banner"); HZBannerAd.Destroy(); } }
public void DestroyBannerAd() { #if EM_HEYZAP HZBannerAd.Destroy(); #else Debug.LogError(NO_SDK_MESSAGE); #endif }
public void HideBanner() { #if API_ADS_HEYZAP HZBannerAd.Hide(); HZBannerAd.Destroy(); #endif if (BannerRemoved != null) { BannerRemoved(); } _bannerDisplayed = false; }
public void ToggleBanner() { if (!bannerShowing) { HZBannerShowOptions showOptions = new HZBannerShowOptions(); showOptions.Position = HZBannerShowOptions.POSITION_BOTTOM; HZBannerAd.ShowWithOptions(showOptions); bannerShowing = true; } else { HZBannerAd.Hide(); HZBannerAd.Destroy(); bannerShowing = false; } }
protected override void InternalDestroyBannerAd(AdPlacement _) { #if EM_HEYZAP HZBannerAd.Destroy(); #endif }
void DestroyAdBanner() { HZBannerAd.Destroy(); }
public void DestroyBanner() { HZBannerAd.Destroy(); Toaster.ShowDebugToast("Destroying banner ad"); }
public void DestroyBannerAd() { HZBannerAd.Destroy(); }