SetImpressionAction
Overview
Sets the impression action for the given placement.
Syntax
SetImpressionAction(placementName, action)
placementName (REQUIRED)
string Unique name of placement. The same name will be used in gravite.net account.
action (REQUIRED)
Action<AATKitImpression> Action that will be triggered when impression event occurs.
Examples
SetImpressionAction("PlacementName", (impression) => {
Debug.Log("ImpressionAction impression: " + impression);
});
Last updated