//BAM: Nice start; keep working on it. ////Project3 ////Michael Goldberg, been sick, getting alot done this weekend String title="Project3", author="MichaelGoldberg"; color seaColor=color(50,200,250); void setup() { //// Init. size(800,600); } void draw() { //// Next frame scene(); } void scene() { //// skyy, name, ? button, etc.. background(180,200,230 ); fill(0); textSize(25); text( title, 342, 20 ); textSize(12); text( "? for help", 350, 40 ); // Ocean noStroke(); fill( seaColor ); rectMode(CORNERS); rect( 0, 100,800,599 ); rectMode(CORNER); }