Unity 5 Chartboost黑屏

时间:2015-09-20 23:46:17

标签: android unity3d chartboost

我已将Chartboost应用到我的游戏中。 广告出现了,如果我关闭它,没有问题。 如果我按下后退按钮也没问题。 如果我按下广告并按下后退按钮,或者只是返回应用程序,屏幕将变为黑色。我可以听到背景音乐,我仍然可以玩游戏,但显示器完全是黑色。

我使用:Unity 5.0.2f1(64位)和CBUnityPlugin_5_5_3

我正在Android 5.0.2手机和4.4.4平板电脑上进行测试 结果是一样的。

bool shouldDisplayInterstitial(CBLocation location)
{
    return true;
}
void didDisplayInterstitial(CBLocation location)
{}
void didCacheInterstitial(CBLocation location)
{}
void didFailToLoadInterstitial(CBLocation location, CBImpressionError error)
{}
void didDismissInterstitial(CBLocation location)
{}
void didCloseInterstitial(CBLocation location)
{}
void didClickInterstitial(CBLocation location)
{
    Application.LoadLevel("Main_Menu");
}

void OnDisable() 
{
    Chartboost.didFailToLoadInterstitial -= didFailToLoadInterstitial;
    Chartboost.didDismissInterstitial -= didDismissInterstitial;
    Chartboost.didCloseInterstitial -= didCloseInterstitial;
    Chartboost.didClickInterstitial -= didClickInterstitial;
    Chartboost.didCacheInterstitial -= didCacheInterstitial;
    Chartboost.shouldDisplayInterstitial -= shouldDisplayInterstitial;
    Chartboost.didDisplayInterstitial -= didDisplayInterstitial;
}
void OnEnable() 
{
    Chartboost.didFailToLoadInterstitial += didFailToLoadInterstitial;
    Chartboost.didDismissInterstitial += didDismissInterstitial;
    Chartboost.didCloseInterstitial += didCloseInterstitial;
    Chartboost.didClickInterstitial += didClickInterstitial;
    Chartboost.didCacheInterstitial += didCacheInterstitial;
    Chartboost.shouldDisplayInterstitial += shouldDisplayInterstitial;
    Chartboost.didDisplayInterstitial += didDisplayInterstitial;
}

并在我的更新循环中

if (adcall)
        {
            variable.dieInc();
            if (variable.getDie() == 3)
            {
                if (Chartboost.hasInterstitial(CBLocation.Default)) 
                {
                    Chartboost.showInterstitial (CBLocation.Default);
                }
            variable.resetDie();
            }
            adcall = false;
        }

还有其他人有同样的效果吗?

期待您的回答

1 个答案:

答案 0 :(得分:0)

我通过在 Chartboost.cs 脚本中评论 OnGui()函数解决了同样的问题。

我希望还不晚!