Commit 8ad5ad63 authored by Chen Jiping's avatar Chen Jiping

fix:修复因没有结束音频时,㺃咪动画异常问题

parent 1356c21e
...@@ -373,11 +373,13 @@ cc.Class({ ...@@ -373,11 +373,13 @@ cc.Class({
} }
//如果已经结束,就播放结束音频;其他情况就播放待机音频 //如果已经结束,就播放结束音频;其他情况就播放待机音频
if (this._shown) { if (this._shown && this.data.guideAudioUrl3) {
clickCat(this.data.guideAudioUrl3, 'finish'); clickCat(this.data.guideAudioUrl3, 'finish');
} }
else{ else{
clickCat(this.data.guideAudioUrl2, 'begin'); clickCat(this.data.guideAudioUrl2, 'normal');
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment