p5.js | Teclado | llave

La variable clave en p5.js siempre contiene el valor de la tecla que se presionó recientemente . Para obtener las mayúsculas adecuadas, es mejor usarlas dentro de keyTyped() . Utilice la variable keyCode para claves que no sean ASCII.

Sintaxis:

key

El siguiente programa ilustra la variable clave en p5.js:
Ejemplo-1:

let valueX;
let valueY;
  
function setup() {
    
    // Create Canvas of size 500*500
    createCanvas(1000, 500);
}
  
function draw() {
    
    // set background color
    background(200);
    
    fill('green');
    // set text and text size
    textSize(25);
    text(
      'Press Any Key to change the text within circle'
      , 30, 30);
    
    // use of keyIsPressed Variable
    if (keyIsPressed) {
        // draw ellipse  
        ellipse(mouseX, mouseY, 115, 115);
        fill('red');
        text("Key Is Pressed", 100, 300);
        textSize(100);
        text(key, mouseX, mouseY);
    } 
    
    else {
        rect(mouseX / 2, mouseY / 2, 300, 200);
        text(key, mouseX, mouseY);
    }
  
}

Producción:

Ejemplo-2:

let valueX;
let valueY;
  
function setup() {
    
    // Create Canvas of size 500*500
    createCanvas(500, 500);
}
  
function draw() {
    
    // set background color
    background(200);
    
    fill('green');
    
    // set text and text size
    textSize(100);
    
    text(key, height / 2, width / 2);
    if (keyIsPressed) {
        textSize(40);
        text("is pressed", height / 7, width - 50);
    }
  
}

Producción:

Referencia: https://p5js.org/reference/#/p5/key

Publicación traducida automáticamente

Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *