We are about to switch to a new forum software. Until then we have removed the registration on this forum.
i'm using images for bullets and my ship has to shoot aliens when i pressed space bar. how can i make it as simple as i can ?
i did something like that but this is one time bullet. It has to continuously shoot.
noCursor();
background(0);
image(s1, mouseX,650);
image(p1, 20, 30);
if (keyPressed) {
if (keyPressed == true && key ==' ') {
image(n1, mouseX, bo);
}
}
bo = bo -10;
}
Answers
http://www.openprocessing.org/sketch/77863
Try something like this:
Line 16 should hold false
If the guy would answer I would write more...