Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HideBanner is Irreversible, Requires Banner Reload #27

Open
dagrooms52 opened this issue Feb 12, 2023 · 0 comments
Open

HideBanner is Irreversible, Requires Banner Reload #27

dagrooms52 opened this issue Feb 12, 2023 · 0 comments

Comments

@dagrooms52
Copy link

Expected: hide & show banner with the single function calls of the relevant names:

func _ready():
  applovin_max.loadBanner(BannerID, true, self.get_instance_id())    
  applovin_max.hideBanner(BannerID)
  ...
  applovin_max.showBanner(BannerID) # FAILS

Actual behavior: hide banner is irreversible and requires another load_banner call before showing the banner again:

func _ready():
  # Show banner
  applovin_max.loadBanner(BannerID, true, self.get_instance_id())    
  applovin_max.showBanner(BannerID)
...
  # Hide banner
  applovin_max.hideBanner(BannerID)
  # Can also removeBanner()
...
  # Show banner again, must reload
  applovin_max.loadBanner(BannerID, true, self.get_instance_id())    
  applovin_max.showBanner(BannerID)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant