小程序
小游戏
企业微信
微信支付
扫描小程序码分享
默认创建的 打飞机 示例 这里 是20帧创建要给子弹播放一此音效,我华为荣耀x9 ,为什么 发射了2-3个子弹才听到一次音效声音?
if ( databus.frame % 20 === 0 ) { this.player.shoot() this.music.playShoot() }
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
playShoot() {
// this.shootAudio.currentTime = 0
new Audio('audio/bullet.mp3').play()
}
playExplosion() {
// this.boomAudio.currentTime = 0
new Audio('audio/boom.mp3').play()
music.js 改成这样就正常了。
我推测是因为微信的模拟环境中
运行这一行代码有 bug
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
如果子弹发射间隔调到 % 10 ,声音就不对了,调到5 就基本听不到声音了
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
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
如果子弹发射间隔调到 % 10 ,声音就不对了,调到5 就基本听不到声音了
playShoot() {
// this.shootAudio.currentTime = 0
new Audio('audio/bullet.mp3').play()
}
playExplosion() {
// this.boomAudio.currentTime = 0
new Audio('audio/boom.mp3').play()
}