p5.js | frameRate()函数
p5.js 中的 frameRate()函数用于指定每秒显示的帧数。不带参数调用 frameRate() 返回当前帧率。绘图函数必须至少运行一次才能返回值。此函数与 getFrameRate()函数相同。
句法
frameRate( c )
参数:该函数接受单个参数c ,该参数存储帧速率变量的值。
下面的程序说明了 p5.js 中的 frameRate()函数:
例子:
function setup() {
// Create canvas of given size
createCanvas(500, 200);
// Set the font size
textSize(20);
// Use frameRate() function
frameRate(3);
}
function draw() {
// Set the background color
background(0, 153, 0);
// Display the output
text("Frame Count with frameRate " +
int(getFrameRate()), 100, 100);
}
输出:
参考: https://p5js.org/reference/#/p5/frameRate