时间:2019-05-04 来源:小程序工厂
你好,请提供出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
onLoad: function () {
this.current2 = cc.audioEngine.play(this.clip, true , 0.5);
},
onclickseevideos:function()
{
var self = this;
if (CC_WECHATGAME) {
self.rewardedVideoAd= wx.createRewardedVideoAd({ adUnitId: '' });
self.rewardedVideoAd.onClose(res => {
// 用户点击了【关闭广告】按钮
if (res && res.isEnded || res === undefined) {
// 正常播放结束,可以下发游戏奖
}
else {
// 播放中途退出,不下发游戏奖励
}
});
self.rewardedVideoAd.show().catch(err => {self.rewardedVideoAd.load().then(() => self.rewardedVideoAd.show())});
}
},
代码大致是这样,在苹果机侧键关闭的情况下运行游戏,虽然背景音乐在播放但是声音是没有的,点击看激励广告后背景音乐声音就出来了,在关闭激励广告后背景音乐还是不消失
麻烦按正确格式提供代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)