p5.j​​s 声音和 keyTyped 或 keyPressed 函数

发布于 2025-01-11 22:49:39 字数 256 浏览 0 评论 0原文

我正在尝试编写一个代码,当我按下某个键盘按键时,就会发出声音。我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绾颜 2025-01-18 22:49:39

以下内容适用于我的系统。确保您有一个名为“assets”的文件夹,并且已将名为“keyA.mp3”的文件拖放到其中。我在 Mac 上使用 Chrome 浏览器。重要提示:首先单击灰色窗口,然后从键盘输入“a”,它应该可以工作。

function preload(){
  sound = loadSound('assets/keyA.mp3');
}

function draw() {
createCanvas(displayWidth, displayHeight);
background(209);
}

function keyTyped() {
  if (key == 'a') {
    sound.play();
  } 
}

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.

function preload(){
  sound = loadSound('assets/keyA.mp3');
}

function draw() {
createCanvas(displayWidth, displayHeight);
background(209);
}

function keyTyped() {
  if (key == 'a') {
    sound.play();
  } 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文