Debug with Editor

Err…complex.

There are so many elements!

Easiest when you just take this image as background. Done.

When you want the stars to move,

  • make the sky black
  • use my ball code for each star

for a star field see Incremetly speed millis()? (processing, not p5 but easy to convert)

maybe cut out the console so you have another image that can walk over the background

when you want to move them together you can use :

push();
translate(consoleX, 0); 
// display console (with image()) and text (with text()) here
pop();

Chrisir