p5.js | frameCount 变量
p5.js 中的frameCount 变量用于保存自程序启动以来显示的帧数。在 setup()函数内部,值为 0,在第一次绘制后为 1,等等。
句法:
frameCount
下面的程序说明了 p5.js 中的 frameCount 变量:
示例:此示例使用 frameCount 变量来显示帧数。
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);
}
输出:
参考: https://p5js.org/reference/#/p5/frameCount