nature-of-code / noc-examples-processing

Repository for example code from The Nature of Code book
MIT License
2.55k stars 953 forks source link

MousePressed in "NOC_5_1_box2d_exercise_solved.pde" #105

Open CaseyJScalf opened 5 years ago

CaseyJScalf commented 5 years ago

I think line 31 should read something like this or the boxes just keep appearing regardless if you click your mouse or not.

// When the mouse is clicked, add a new Box object if (mousePressed) { Box p = new Box(mouseX, mouseY); boxes.add(p); }