我在线观看了一个教程,其中该人集成了统一广告并使用以下代码。他store_id
在统一仪表板中添加了来自平台的选项。我似乎找不到那个。
我读到了这个问题,它说在统一仪表板上创建项目时,我必须提供应用标识符,以便为其生成商店 ID。那么这是否意味着我必须先不带广告上传,然后再使用广告再次上传?
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Monetization;
using UnityEngine.SceneManagement;
using UnityEngine.Advertisements;
public class adController : MonoBehaviour
{
private string store_id = "";
private string video_ad = "video";
// Use this for initialization
void Awake ()
{
Monetization.Initialize(store_id, false);
}
// Update is called once per frame
void Update ()
{
if (Monetization.IsReady(video_ad))
{
ShowAdPlacementContent ad = null;
ad = Monetization.GetPlacementContent(video_ad) as ShowAdPlacementContent;
if (ad != null)
{
ad.Show();
}
}
}
}
如果您有一些有组织的步骤来实现这一点,请提供链接。如果我无法解释我的问题,请询问我。
谢谢