Loading...
Logo
Processing Forum
I guess what I'm trying to say is that I want him tracked with his trails of itself after being moved around.  So, this would need to be moved by the mouse and have it's picture left behind itself.  If anyone can help me please do! I would greatly appreciate it :)  I've said it before and I'll say it again; I'm still a newb lol.


void setup() {
  size(800, 800);
  background(#7C6868);
}
void draw() {
  //spider body
  strokeWeight(6);
  stroke(0, 0, 0);
  fill(62, 35, 139);
  ellipse(550, 350, 200, 200);
  ellipse(550, 450, 150, 150);

  //eyes
  stroke(255, 0, 0);
  point(500, 450);
  point(525, 450);
  point(575, 450);
  point(600, 450);
  point(510, 475);
  point(535, 475);
  point(565, 475);
  point(590, 475);

  //fangs
  quad(520, 510, 500, 520, 500, 530, 520, 560);
  quad(580, 510, 600, 520, 600, 530, 580, 560);

  //legs
  stroke(0, 0, 0);
  line(470, 400, 450, 500);
  line(630, 400, 650, 500);
  line(455, 385, 425, 505);
  line(650, 380, 675, 510);
  line(475, 285, 400, 505);
  line(630, 285, 700, 505);
  line(490, 280, 450, 200);
  line(615, 280, 650, 200);
}

Replies(1)

In order to move a "sprite" you need to use relative coordinates.
However, you used absolute 1s up there.

Easiest fix is simply save that whole "shape" as a PImage.
Then you can choose where to display that at the screen.

Take a look at this online example to learn hot to do that:
http://studio.processingtogether.com/sp/pad/export/ro.9ck0KLYubLcZG/latest