當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。