gpt4 book ai didi

ios - 如何统一隐藏亚马逊广告

转载 作者:行者123 更新时间:2023-11-29 01:07:12 26 4
gpt4 key购买 nike

所以我将亚马逊移动广告集成到我的 unity/ios 项目中。每次场景发生变化时,我都会将其全部用于隐藏广告的位置。每次我打开一个场景,广告都会显示。所以一切都很好,除非你真的很快改变场景。我不希望在主游戏中出现广告,因为它会阻碍用户的视线。每次进入重试场景时,如果您在广告加载前快速从该场景切换,该广告将卡在下一个场景中,从而使另一个广告显示在它上面。每次场景更改时,无论您更改场景的速度有多快,它都应该隐藏广告。如果显示广告,有什么方法可以确保它隐藏广告?我正在使用下面的代码:

void Start() {
mobileAds = AmazonMobileAdsImpl.Instance;
ApplicationKey key = new ApplicationKey();
key.StringValue = iosKey;
mobileAds.SetApplicationKey(key);

ShouldEnable enable = new ShouldEnable();
enable.BooleanValue = true;
mobileAds.EnableTesting(enable);
mobileAds.EnableLogging(enable);

Placement placement = new Placement();
placement.Dock = Dock.BOTTOM;
placement.HorizontalAlign = HorizontalAlign.CENTER;
placement.AdFit = AdFit.FIT_AD_SIZE;
response = mobileAds.CreateFloatingBannerAd(placement);
string adType = response.AdType.ToString();
long identifer = response.Identifier;

newResponse = mobileAds.LoadAndShowFloatingBannerAd(response);
bool loadingStarted = newResponse.BooleanValue;
}


void OnDestroy() {
mobileAds.CloseFloatingBannerAd(response);
response = null;
mobileAds = null;
newResponse = null;
}

最佳答案

您什么时候下载 Unity 插件的?在插件的早期版本中有一些问题,这听起来像(整个,一个广告加载在另一个东西之上)。如果您最近没有更新它,请尝试从亚马逊下载最新版本,看看问题是否仍然存在。

关于ios - 如何统一隐藏亚马逊广告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36210935/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com