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

ReloadAd() public method

Reload advertisement.

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

Usage Example

コード例 #1
0
 void OnFullscreenViewed()
 {
     // If we reach this stage, it means the user viewed the Ad past the initial screen.
     // This could be a good point to reward the user (eg. give an in-game bonus item).
     // You can also start reloading the Ad here if you are not using built-in auto reloading.
     Debug.Log("AD Viewed\n");
     fullscreenAd.ReloadAd();
 }
All Usage Examples Of UnityEngine.iOS.ADInterstitialAd::ReloadAd