Topic Summary
// This line is a comment, machine will ignore me, only you read me.
function preload() {
// Anything inside here will run first, but this function is optional.
}
function setup() {
// Anything inside here will run once, this function is a must-have.
}
function draw() {
// Anything inside here will run repeatedly, this function is also a must-have.
}
Loved this? Spread the word