In ST Alation
In ST Alation
Documantation
AdManager.instance.LoadAndShowBanner ()
Loads and shows the banner Ad at position defined in Init function.
AdManager.instance.LoadAndShowBanner ();
AdManager.instance.HideBanner()
Hides the banner ad. Useful when you want to hide ad during some area of game.
AdManager.instance.HideBanner();
AdManager.instance.ShowBanner()
Use it after calling HideBanner() function.
Used to show it again on screen if hidden.
AdManager.instance.ShowBanner();
This function do not Load the ad, to show banner initially call LoadAndShowBanner();.
AdManager.instance.onInterstitialLoaded
This delegate is called when interstitial is loaded successfully.
AdManager.instance.onInterstitialLoaded = delegate {
Debug.Log("Interstitial Loaded"); }