01-03-rain-catcher-pt-3.js 453 B

12345678910111213141516
  1. /**
  2. * Careful with the capitalization of PLAY and the quotations
  3. * Sometimes, the quotation marks do not paste properly
  4. * */
  5. //turtleSprite - Initialize When Scene Starts
  6. if($this.scene.state() == "PLAY") {
  7. createTimer(1000, function(){
  8. var ndrop = drop.clone();
  9. //add code for random function here
  10. var rainX = random(760,40);
  11. //add code for ndrop.x() here
  12. ndrop.x(rainX);
  13. ndrop.y(10);
  14. });
  15. }