我正在尝试在我计划在iOS上部署的游戏上实施Unity Ads,但出于某种原因,它们只出现在编辑器中(其中显示“Everything似乎正在工作!”)我建立iPhone 5s时,广告不会弹出。 这是我的脚本(为了激活它我只是将它附加到我场景中的游戏对象):
static int loadCount = 0;
void Start()
{
if (loadCount % 3 == 0) // only show ad every third time
{
ShowAd ();
}
loadCount++;
}
public void ShowAd()
{
if (Advertisement.IsReady())
{
Advertisement.Show();
}
}
感谢任何帮助!