このページでは[「P5.js 日本語リファレンス」] (https://qiita.com/bit0101/items/91818244dc26c767a0fe) の noDebugMode関数を説明します。
noDebugMode()
説明文
3Dスケッチで debugMode() をオフにします。
構文
noDebugMode()
例
function setup() {
createCanvas(100, 100, WEBGL);
camera(0, -30, 100, 0, 0, 0, 0, 1, 0);
normalMaterial() ;
debugMode() ;
}
function draw() {
background(200);
orbitControl() ;
box(15, 30);
//スペースバーを押してdebugModeをオフにします
if(keyIsDown(32)){
noDebugMode() ;
}
}
実行結果
著作権
p5.js was created by Lauren McCarthy and is developed by a community of collaborators, with support from the Processing Foundation and NYU ITP. Identity and graphic design by Jerel Johnson.
ライセンス
Creative Commons(CC BY-NC-SA 4.0) に従います。