show admob

I want to show admob when go to game over scene but the admob show delay. Is there any way to make the admob show faster ?

I don’t think so. I think the ads.hide() ads.show() is perhaps misnamed. It doesn’t ‘hide’ the ads, it actually removes them, and show puts them back. 

For ads you are at the mercy of the ad provider. It could show up immediately, it could not show at all if there is insufficient inventory. Part of the problem for the delay is the ad has to come down the internet pipe, I don’t think you can cache that.

You could always cheat. You could have a ‘game over’ animation that starts to display the ads, then goes to a game over screen - a bit like Pacman, when you die the Pacman disappears over a second or two with an animation and sound effects.

That would provide a little extra time to make it more likely the ad is displayed (I’m guessing you want to make sure it is displayed before the user can go on) without it seeming like you are forcing the player to wait for the advert. If you coded (say) a 5 second delay before the Game Over screen could be left this would annoy the player. 

I don’t think so. I think the ads.hide() ads.show() is perhaps misnamed. It doesn’t ‘hide’ the ads, it actually removes them, and show puts them back. 

For ads you are at the mercy of the ad provider. It could show up immediately, it could not show at all if there is insufficient inventory. Part of the problem for the delay is the ad has to come down the internet pipe, I don’t think you can cache that.

You could always cheat. You could have a ‘game over’ animation that starts to display the ads, then goes to a game over screen - a bit like Pacman, when you die the Pacman disappears over a second or two with an animation and sound effects.

That would provide a little extra time to make it more likely the ad is displayed (I’m guessing you want to make sure it is displayed before the user can go on) without it seeming like you are forcing the player to wait for the advert. If you coded (say) a 5 second delay before the Game Over screen could be left this would annoy the player.