- Home /
 
 
               Question by 
               Colonel-Podliva · Jul 12, 2019 at 03:10 AM · 
                adsunityadsbanner  
              
 
              UnityAds banner not showing properly (half of banner cut of by bottom of screen)
For some reason, UnityAds banner not showing properly, it's position is too low, a half of banner just cut of by bottom of screen
Here is my code:
 public void ShowBanner()
     {
         StartCoroutine(ShowBannerWhenReady());
     }
 
     IEnumerator ShowBannerWhenReady()
     {
         while (!Advertisement.IsReady(place_banner))
         {
             yield return new WaitForSeconds(0.5f);
         }
         Advertisement.Banner.Show(place_banner);
     }
 
               Basically it just a copy/paste from official UnityAds integration guide.
Is anyone come across this?
               Comment
              
 
               
              Your answer
 
             Follow this Question
Related Questions
What is the size of Unity Banner Ad? 4 Answers
is there an advantage of creating multiple Ad units/ Placement of same type in Unity, Admob etc? 1 Answer
Banner ad works in unity but doesn't work in android phone 1 Answer
How do I reward the players with coins after they watch a Admob rewarded video? 1 Answer
Why unity ads income suddenly dropped? 0 Answers