//Jose M. Pena //character //Body int x,y; void setup() { size(800,600); x=10; y=15; } void draw() { background(127,127,255); fill(127,255,127); rect(0,height/2,width,height); //draw hero fill(255,0,0); rectMode(CORNER); rect(100,100, x+30,y+50); fill(0,255,0); ellipseMode(CORNER); ellipse(95+5,85-20,x+30,y+20); }