收藏
回答

小游戏音效播放问题

框架类型 问题类型 操作系统 工具版本
小游戏 Bug Windows 1.02.2004020

默认创建的 打飞机 示例 这里 是20帧创建要给子弹播放一此音效,我华为荣耀x9 ,为什么 发射了2-3个子弹才听到一次音效声音?

     if ( databus.frame % 20 === 0 ) {
      this.player.shoot()
      this.music.playShoot()
    }
回答关注问题邀请回答
收藏

2 个回答

  • 冯振通
    冯振通
    2023-05-26

    playShoot() {

        // this.shootAudio.currentTime = 0

        new Audio('audio/bullet.mp3').play()

      }


      playExplosion() {

        // this.boomAudio.currentTime = 0

        new Audio('audio/boom.mp3').play()

      }

    music.js 改成这样就正常了。

    我推测是因为微信的模拟环境中

    // this.boomAudio.currentTime = 0

    运行这一行代码有 bug

    2023-05-26
    有用
    回复
  • 金奇
    金奇
    2020-04-19

    如果子弹发射间隔调到 % 10 ,声音就不对了,调到5 就基本听不到声音了

    2020-04-19
    有用
    回复 1
    • 冯振通
      冯振通
      2023-05-26
      2023-05-26
      回复
登录 后发表内容
问题标签