UnityEngine.iOS.ADInterstitialAd.Show C# (CSharp) Method

Show() public method

Shows full-screen advertisement to user.

public Show ( ) : void
return void
        public void Show()
        {
        }

Usage Example

Esempio n. 1
0
 void OnFullscreenLoaded()
 {
     Debug.Log("OnFullscreenLoaded");
     if (_canShowInterstitial)
     {
         fullscreenAd.Show();
     }
 }
All Usage Examples Of UnityEngine.iOS.ADInterstitialAd::Show