P5LIVE
loading...
X
P5LIVE
1920x1080
COCODING
–
⇡
⇣
RECODING
Loop
Max Gap:
sec
CatMode
Speed:
SKETCHES
P5LIVE
SETTINGS
Live Coding
250ms
500ms
1000ms
2000ms
Console
AUTO
SHOW
Eco Render
Menu Tab
Snapshot Code
Line Numbers
Recompile Pulse
Auto Autocomplete
Lock Code on Drag
Pass-Thru KeyPress
Notifications
Tooltips
Multi-P5LIVE Warning
Timestamp Exports
COCODING Flags
COCODING Autosave
Check for Updates
Libs:
Backup:
Disabled
On Exit
Daily
Weekly
Monthly
Now
EDITOR
Size:
pt
Theme:
Ambiance
Chaos
Clouds Midnight
Dracula
Cobalt
Gruvbox
Green on Black
idle Fingers
krTheme
Merbivore
Merbivore Soft
Mono Industrial
Monokai
Nord Dark
One Dark
Pastel on dark
Solarized Dark
Terminal
Tomorrow Night
Tomorrow Night Blue
Tomorrow Night Bright
Tomorrow Night 80s
Twilight
Vibrant Ink
Chrome
Clouds
Crimson Editor
Dawn
Dreamweaver
Eclipse
GitHub
IPlastic
Solarized Light
TextMate
Tomorrow
XCode
Kuroir
KatzenMilch
SQL Server
Background
Text
Active-Line
Keybinding:
Ace
Sublime
VS Code
Vim
Emacs
Snippets:
Launch Editor
SoniCode
Sine
Triangle
Square
Sawtooth
Midi
Poly:
1
2
3
4
5
6
7
8
Transpose:
0
1
2
3
4
5
6
7
8
9
SHORTCUTS
RESET
SNIPPETS
X
SNIPPETS
X
// global top
// setup bottom
// draw top
// draw bottom
// global bottom
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); }