La variable keyCode en p5.js siempre contiene el código de tecla de la tecla que se presionó recientemente. Se recomienda usar este código de tecla para averiguar si el usuario está presionando una tecla modificadora, como Shift, Control, la tecla Bloq Mayús o las teclas de función.
Sintaxis:
keyCode
El siguiente programa ilustra la variable keyCode en p5.js:
Ejemplo:
javascript
function setup() { createCanvas(400, 300); } function draw() { clear(); textSize(18); fill("black"); text("Press any key to see its keyCode", 60, 20); text("The name of the key pressed", 70, 60); textSize(52); fill("red"); // Show the key that is recently pressed text(key, 170, 120); textSize(18); fill("black"); text("The keyCode of the key pressed", 60, 160); textSize(52); fill("red"); // Show the key code of the key that is // recently pressed text(keyCode, 160, 220); }
Producción:
Referencia: https://p5js.org/reference/#/p5/keyCode
Configuración del entorno: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
Referencia: https://p5js.org/reference/#/p5/setCamera
Publicación traducida automáticamente
Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA