AdMob Module in Godot 3.1

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By JulioYagami

I need to use the functions in this link:

But I don’t know how do I call the singleton in Godot 3.1 Alpha 3

B4DNetwork’s answer is correct about accessing singletons. I wanted to mention, just in case you missed it, that using that module requires compiling an export template from source, in order to make the module available via a singleton.

Compiling export templates

i_love_godot | 2019-01-27 17:12

:bust_in_silhouette: Reply From: B4DNetwork

Check This Solution

you might use :

Engine.has_singleton("some_module")
Engine.get_singleton("some_module")