P5LIVE
loading...
X
X
P5LIVE
COCODING
–
⇡
⇣
SKETCHES
P5LIVE
SETTINGS
Audio out:
Live Coding
250ms
500ms
1000ms
2000ms
Eco Render
Console
Menu Tab
Snapshot Code
Line Numbers
Auto Autocomplete
Lock Code on Drag
Pass-Thru KeyPress
Notifications
Tooltips
Multi-P5LIVE Warning
Timestamp Exports
Backup COCODING
Libs:
Code Size:
pt
Code Background:
Code Theme:
Green on Black
Ambiance
Cobalt
Pastel on dark
Twilight
Code Keybinding:
Ace
Sublime
VS Code
Vim
Emacs
Backup:
Disabled
On Exit
Daily
Weekly
Monthly
Now
SHORTCUTS
function setup() { createCanvas(windowWidth, windowHeight); } function draw() { }
/* CUSTOM FUNCTIONS FOR P5LIVE */ // keep fullscreen if window resized function windowResized() { resizeCanvas(windowWidth, windowHeight); } // custom ease function function ease(iVal, oVal, eVal){ return oVal += (iVal - oVal) * eVal; } // processing compatibility function println(msg){ print(msg); }