Hello everyone, i imported admob plugin on my unity game , i took this plugin link text i followed instructions of this plugin, interstitial shows a lot of times, i need it to show only once in game over , please help
Interstitial ads only shows up if you call show()
method, so just call this method in the function that is responsible to handle your gameOver situation, means if you call show()
in Start
then the ad will be visible from the time your game loads,interstitial ads only shows up if show()
method get called … so what you had to do is call this method from the function which is handling whether the game is over or not … plus avoid calling in Start or Update or any monobehaviour method