cocos creator前后台切换
当玩家在玩游戏时,突然接了一个电话,此时游戏会被切到后台待机,所有的声音
播放都会停止,等打完电话,回到游戏,游戏又会被切回前台来,需要手动播放
声音。可使用如下代码


onLoad: function () {
  cc.game.on(cc.game.EVENT_HIDE, function(){
    console.log("游戏进入后台");
    //this.doSomeThing();
  },this);


  cc.game.on(cc.game.EVENT_SHOW, function(){
    console.log("游戏进入前台");
    //this.doSomeThing();
  },this);
},

 

相关文章:

  • 2022-12-23
  • 2021-08-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-17
猜你喜欢
  • 2021-10-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-20
  • 2022-12-23
相关资源
相似解决方案