This site requires JavaScript, please enable it in your browser!
Greenfoot back
tyson7

tyson7

Welcome to my page

tyson7's scenarios

play Circles & Squares

tyson7's collections

This user has no collections

Recent Comments

tyson7

2012/5/5

// checking if hit with wall. if (getX() <=5 || getX() >= getWorld().getWidth() -5) { getWorld().removeObject(this); return; } if (getY() <=5 || getY() >= getWorld().getHeight() -5) { getWorld().removeObject(this); return; }