You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue description:
Basically I call my custom _init_ads() function which looks like this:
func _init_ads():
admob = null
if(Engine.has_singleton("AdMob")):
admob = Engine.get_singleton("AdMob")
var res = admob.init(isReal, get_instance_id())
admob.resize()
admob.loadBanner(adBannerId, isTop)
admob.showBanner()
admob.resize()
and before I call this function, I set isTop. However, this doesn't result in changing the ads orientation, but just creates two ads that never go away unless I use admob.hideBanner().
The text was updated successfully, but these errors were encountered:
OS target (Android/iOS): Android
Godot version: 3.1.1
Issue description:
Basically I call my custom _init_ads() function which looks like this:
and before I call this function, I set isTop. However, this doesn't result in changing the ads orientation, but just creates two ads that never go away unless I use admob.hideBanner().
The text was updated successfully, but these errors were encountered: