Pong Challenge #2
Now delete all the code that is there and write the following code in. This is good practice so that it becomes memory muscle and intuitive even though the temptation is to cut and paste somethings. I have found it laborious but in the end very helpful to my coding. function setup() { createCanvas(800, 600); } function draw() { background(100); } You should have something like this... We are going to create a canvas on which [...]