如何在控制台日志中显示当前帧率? (p5.js)
How to show a current frame-rate in the console log? (p5.js)
当我尝试时:
console.log(frameRate);
在 draw(){} 函数中,
控制台日志显示:
function bound (){}
我试图让控制台日志每 500 毫秒显示一次当前帧率,但它却显示在控制台日志中。我该如何解决这个问题,以便它在 p5.js?
中显示实际的当前帧速率
您需要调用函数来获取 return 值:
console.log(frameRate());
在此处查看参考资料:https://p5js.org/reference/#/p5/frameRate
“使用非数字类型或非正数的参数调用 frameRate() 也是 return 的当前帧率。”
当我尝试时:
console.log(frameRate);
在 draw(){} 函数中, 控制台日志显示:
function bound (){}
我试图让控制台日志每 500 毫秒显示一次当前帧率,但它却显示在控制台日志中。我该如何解决这个问题,以便它在 p5.js?
中显示实际的当前帧速率您需要调用函数来获取 return 值:
console.log(frameRate());
在此处查看参考资料:https://p5js.org/reference/#/p5/frameRate
“使用非数字类型或非正数的参数调用 frameRate() 也是 return 的当前帧率。”