Advertisement
Guest User

maddy

a guest
Nov 22nd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. var RADIUS = 100;
  2. var circle;
  3. function start(){
  4. setTimer(moveBall, 100);
  5.  
  6. circle = new Circle(RADIUS);
  7. circle.setPosition(getWidth()/2,getHeight()/2);
  8. circle.setColor(Randomizer.nextColor);
  9. add(circle);
  10. }
  11.  
  12. function moveBall(){
  13.  
  14.  
  15.  
  16. circle.setPosition(Randomizer.nextInt(getWidth()-getWidth()+100,getWidth()-100)
  17. ,Randomizer.nextInt(getHeight()-getHeight()+100,getHeight()-100));
  18. circle.setColor(Randomizer.nextColor());
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement