Advertisement
kasru

Moving Objects

Jan 10th, 2013
13,336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //****** Donations are greatly appreciated.  ******
  2. //****** You can donate directly to Jesse through paypal at  https://www.paypal.me/JEtzler   ******
  3.  
  4. var bouncespeed : float = 0.002f;
  5. var bouncing = true;
  6.  
  7. function Start() {
  8.     itembounce();
  9. }
  10.  
  11. function Update () {
  12.  
  13. }
  14.  
  15. function itembounce () {
  16.  
  17.     while(bouncing) {
  18.         yield WaitForSeconds(0.2);
  19.         itemBounceUp = false;
  20.         yield WaitForSeconds(0.2);
  21.         itemBounceUp = true;
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement