Interstitial

There are some advertisement settings in the playgama-bridge-config.json file

Playgama Bridge Config

Interstitial ads typically appear during transitions in the game, such as level loading or after game over.

Minimum Interval Between Displays

Set the minimum time interval between interstitial ad displays to comply with platform requirements and improve user experience.

// Default value = 60 seconds
PlaygamaBridge.MinimumDelayBetweenInterstitial

There should be time intervals between interstitial ad displays. For convenience, this SDK includes a built-in timer mechanism between ad displays. You just need to specify the required interval, and you can call the ad display method as often as you like.

Interstitial State

Track the state of the interstitial ad (loading, opened, closed, failed) to manage ad display and user experience.

PlaygamaBridge.InterstitialState

Current state of the interstitial ad. Possible values: loading, opened, closed, failed.

React to changes in ad state. For example, mute the game sound when opened and unmute when closed or failed.

Show Ad

Display an interstitial ad at appropriate moments, such as during level transitions or game over screens. Parameters:

  • Placement (optional)

Last updated