-
Notifications
You must be signed in to change notification settings - Fork 1
Unity Interstitial Usage
Mert Celik edited this page Jan 4, 2019
·
2 revisions
Please refer to InterstitialSampleScript.cs in our Unity plugin for complete implementation.
You should keep a reference to interstitial instance by calling;
private AMInterstitial interstitial = AMInterstitial.Instance;
Load the interstitial by calling:
interstitial.LoadAd();
You can check the ad availability by calling:
if(interstitial.IsLoaded() == true) {
// interstitial is ready
} else {
// interstitial is NOT ready
}
You can display the interstitial by calling:
interstitial.Show();