La variable frameCount en p5.js se usa para contener la cantidad de cuadros que se muestran desde que se inició el programa. Dentro de la función setup(), el valor es 0, después de la primera iteración del dibujo es 1, etc.
Sintaxis:
frameCount
El siguiente programa ilustra la variable frameCount en p5.js:
Ejemplo: este ejemplo utiliza la variable frameCount para mostrar el recuento de fotogramas.
function setup() { // Create canvas of given size createCanvas(400, 400); // Set text size to 40px textSize(40); // Align text to center textAlign(CENTER); // Set Frame Rate to 0.5 frameRate(0.5); } function draw() { // Set background color background(220); // Set color of text fill('green'); // Use frameCount Variable text("Frame Count: \n" + frameCount, width / 2, height / 2); }
Producción:
Referencia: https://p5js.org/reference/#/p5/frameCount
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