OnPauseForAd

Overview

Notifies that ad went fullscreen and that application should pause.

Warning

This callback is unreliable due to inconsistent use of callbacks in different ad network SDKs.

Syntax

OnPauseForAd(placementName)

placementName (REQUIRED)

string Unique name of placement. The same name will be used in gravite.net account.

returns void

Examples

AATKitBinding.OnPauseForAdDelegate += OnPauseForAd;

public void OnPauseForAd(string placementName) 
{
    Debug.Log("OnPauseForAd: " + placementName);
}

Last updated