当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js frameRate()用法及代码示例


p5.j​​s中的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



相关用法


注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | frameRate() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。