📜  p5.js |循环()函数

📅  最后修改于: 2022-05-13 01:56:36.130000             🧑  作者: Mango

p5.js |循环()函数

loop()函数用于连续调用 draw()函数。 loop()函数可以使用 noLoop()函数停止。

句法:

loop()

下面的示例说明了 p5.js 中的loop()函数:

例子:

let l = 0;
  
function setup() {
    
  // Create canvas of given size
  createCanvas(500, 300);
    
  // Set the background color
  background('green');
  
}
  
function draw() {
    
  // Set the stroke color
  stroke('white');
    
  l = l + 0.5;
  if (l > width) {
    l = 0;
  }
    
  // Function to draw the line
  line(l, 0, l, height);
    
}
  
function mousePressed() {
  noLoop();
}
  
function mouseReleased() {
  loop();
}

输出:

在线编辑器: https://editor.p5js.org/
环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/