- Home /
Showing Admob Banner Ad in scene?
I have two scenes. Menu and Game. I want a banner ad to always stay on screen only and only during the game scene. How can I do this?
This is the ad script
public class AdManager : MonoBehaviour {
public static AdManager Instance{ set; get; }
public string bannerId;
public string videoId;
// Use this for initialization
private void Start () {
Instance = this;
DontDestroyOnLoad (gameObject);
#if UNITY_EDITOR
#elif UNITY_ANDROID
Admob.Instance().setTesting(true);
Admob.Instance ().initAdmob (bannerId, videoId);
#endif
}
// Update is called once per frame
void Update () {
}
public void ShowBanner(){
#if UNITY_EDITOR
#elif UNITY_ANDROID
Admob.Instance ().showBannerRelative (AdSize.Banner, AdPosition.TOP_CENTER, 0);
#endif
}
}
To show the banner I am using : AdManager.Instance.ShowBanner ();
Thank You
Answer by unknownsk · Mar 17, 2020 at 08:44 AM
Hello. I have also some problems can you help? My banner ads showing but interstitial and reward video ads not. And i do not know why. In my console evrything works but in my apk only banners is showing. Also i have 8 scences. And all of them have admanager script. Does they all need it? Pls help. :(
Your answer
Follow this Question
Related Questions
Admob Banner Ads not shown but are clickable 1 Answer
Can we show 3d ads in the game like on billboards? 0 Answers
I cant Hide Admob Banner 0 Answers
Banner Ads which contain animated ads affect the performance of the game !! 2 Answers
is there an advantage of creating multiple Ad units/ Placement of same type in Unity, Admob etc? 1 Answer