Advertisement
Guest User

Untitled

a guest
May 27th, 2015
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function update() {
  2.     ball.x += ball.vx;
  3.     ball.y += ball.vy;
  4.     ball.vy += ball.g;
  5.     if (ball.y > WINDOW_HEIGHT - ball.r) {
  6.         ball.y = WINDOW_HEIGHT - ball.r;
  7.         ball.vy = -ball.vy * 0.5;
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement