Version: 5.6
public static void Show ();
public static void Show (Advertisements.ShowOptions showOptions);
public static void Show (string placementId);
public static void Show (string placementId, Advertisements.ShowOptions showOptions);

파라미터

placementId Optional placement identifier. If not specified, your default placement specified in the admin settings will be used.
showOptions Specify e.g. callback handler to be called when video has finished.

설명

Show an advertisement in your project.

See Also: IsReady.

using UnityEngine;
#if UNITY_ADS
using UnityEngine.Advertisements; // only compile Ads code on supported platforms
#endif

public class UnityAdsExample : MonoBehaviour { public void ShowDefaultAd() { #if UNITY_ADS if (!Advertisement.IsReady()) { Debug.Log("Ads not ready for default placement"); return; }

Advertisement.Show(); #endif }

public void ShowRewardedAd() { const string RewardedPlacementId = "rewardedVideo";

#if UNITY_ADS if (!Advertisement.IsReady(RewardedPlacementId)) { Debug.Log(string.Format("Ads not ready for placement '{0}'", RewardedPlacementId)); return; }

var options = new ShowOptions { resultCallback = HandleShowResult }; Advertisement.Show(RewardedPlacementId, options); #endif }

#if UNITY_ADS private void HandleShowResult(ShowResult result) { switch (result) { case ShowResult.Finished: Debug.Log("The ad was successfully shown."); // // YOUR CODE TO REWARD THE GAMER // Give coins etc. break; case ShowResult.Skipped: Debug.Log("The ad was skipped before reaching the end."); break; case ShowResult.Failed: Debug.LogError("The ad failed to be shown."); break; } }

#endif }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961