Skip to content

Instantly share code, notes, and snippets.

@claytical
Created September 15, 2015 00:51
Show Gist options
  • Save claytical/3f07bf789a9ed293977d to your computer and use it in GitHub Desktop.
Save claytical/3f07bf789a9ed293977d to your computer and use it in GitHub Desktop.
True/False Conditional Example
var shouldDrawCircle = false;
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
if (shouldDrawCircle == true) {
ellipse(mouseX,mouseY, 50, 50);
}
}
function mousePressed() {
if (shouldDrawCircle == true) {
shouldDrawCircle = false;
}
else {
shouldDrawCircle = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment