Allow pausing the software on click
This commit is contained in:
parent
06f13c4745
commit
c451982e21
@ -1,6 +1,7 @@
|
|||||||
PVector goal;
|
PVector goal;
|
||||||
Obstacles obstacles;
|
Obstacles obstacles;
|
||||||
Genetic AI;
|
Genetic AI;
|
||||||
|
boolean pause = false;
|
||||||
|
|
||||||
void setup(){
|
void setup(){
|
||||||
size(800, 800);
|
size(800, 800);
|
||||||
@ -18,6 +19,10 @@ void setup(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
void draw(){
|
void draw(){
|
||||||
|
if(pause) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
background(255);
|
background(255);
|
||||||
|
|
||||||
//draw goal
|
//draw goal
|
||||||
@ -46,5 +51,5 @@ void draw(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
void mouseClicked(){
|
void mouseClicked(){
|
||||||
AI.toggleDisplay();
|
pause = !pause;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user