I am in dire need of help with my code. I want to change the color of my creations shoes and mustache but I'm not sure how to at this point. I am fairly new to Processing so I don't know how to. Thanks! Here is the code I have so far.
}void setup(){ size(1025, 600); } void draw() { background(255); for (int x = 35; x < width +240; x += 240) { superhero(x, 110); } }
void superhero(int x, int y) { int d = 80; int f = 15; //tried to do a loop for y but it wouldn't accept it