Shin-NiL / Godot-Android-Admob-Plugin

Android AdMob plugin for Godot Game Engine 3.2 or higher
MIT License
548 stars 67 forks source link

show_interstitial() pauses code execution #41

Closed EmEsA closed 4 years ago

EmEsA commented 4 years ago

Godot version: 3.2.2.rc2

Admob Plugin version: 3.0.1

Issue description: When interstitial is shown the whole game script seem to pause. I would want to show interstitial while I load some data via http request, but it doesn't seem to work that way. When I close the interstitial right away the request is not yet completed so it manages to finish normally. But when I wait for some time before closing. The request is failed when I finally do it.

Shin-NiL commented 4 years ago

Well, that's the expected behavior as the game goes to the background.

EmEsA commented 4 years ago

Thanks. I expected such an answer, but hoped there's a way to change it.