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


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


p5.j​​s中的noDebugMode()函数用于禁用3D草图中由debugMode()函数启用的调试模式。

用法:

noDebugMode()

参数:该函数不接受任何参数。



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

例:

let newFont; 
let debugModeDisabled = false; 
  
function preload() { 
  newFont = loadFont('fonts/Montserrat.otf'); 
} 
  
function setup() { 
  createCanvas(600, 300, WEBGL); 
  textFont(newFont, 18); 
  
  // Enable debug mode 
  debugMode(); 
  
  disableDebugButton = createButton("Disable Debug Mode"); 
  disableDebugButton.position(20, 80); 
  
  disableDebugButton.mouseClicked(() => { 
    debugModeDisabled = true; 
  }); 
} 
  
function draw() { 
  background('green'); 
  text("Click on the button to disable "
        + "the debug mode.", -250, -100); 
  orbitControl(); 
  lights(); 
  
  // If checkbox is checked 
  // Disable debug mode 
  if (debugModeDisabled) { 
    noDebugMode(); 
  } 
  noStroke(); 
  sphere(80); 
}

输出:
debugMode-toggle

在线编辑: https://editor.p5js.org/

环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/

参考: https://p5js.org/reference/#/p5/noDebugMode




相关用法


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