如何在Unity中处理admob插页式广告

时间:2017-11-24 11:01:33

标签: c# unity3d admob

您好,我想处理我的admob非页内广告并每隔60秒显示一次。在Java中我们做postDelayed(),你能告诉我如何使用C#来实现它吗?

这是我的代码:

AdManager.Instance.ShowInterstitial();

1 个答案:

答案 0 :(得分:0)

我使用这个鳕鱼eto acheive,如果有人想:

Invoke("DoSomething", 60) //DoSomething will happen in 60seconds

public void DoSomething() {
////your code here
}