p5.js 声音和 keyTyped 或 keyPressed 函数
我正在尝试编写一个代码,当我按下某个键盘按键时,就会发出声音。我正在使用 p5.js 并尝试了 keyTyped()
函数和 keyPressed()
函数,但它不起作用。 所谓不起作用,是指我输入的代码没有任何问题,因为它可以播放,但当我单击 A 键时没有发出声音。 我使用的代码 函数 keyTyped () {
if ( key === ‘a’) {
keyA.play ( ) }
}
I’m trying to write a code where when I press a certain keyboard key, a sound will play. I’m using p5.js and have tried the keyTyped()
function and keyPressed()
function but it’s not working.
By not working, I meant there is nothing wrong with the code that I’ve typed because it can be played but no sound is produced when i click on the A key.
The code I used
Function keyTyped () {
if ( key === ‘a’) {
keyA.play ( ) }
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下内容适用于我的系统。确保您有一个名为“assets”的文件夹,并且已将名为“keyA.mp3”的文件拖放到其中。我在 Mac 上使用 Chrome 浏览器。重要提示:首先单击灰色窗口,然后从键盘输入“a”,它应该可以工作。
The following works on my system. Make sure that you have a folder called 'assets' and that you have dragNdropped a file called 'keyA.mp3' into it. I used a Chrome browser on a Mac. Important: click on the gray window first, then type 'a' from your keyboard and it should work.