Advertisement
AEAEAEAEarray

dvd

Sep 8th, 2021
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (cursor.pos.x > 100 || cursor.pos.x < 0) {
  2.                 cursor.vel.x = -cursor.vel.x;
  3.             }
  4.             if (cursor.pos.y > 100 || cursor.pos.y < 0) {
  5.                 cursor.vel.y = -cursor.vel.y;
  6.             }
  7.             cursor.pos.x += cursor.vel.x;
  8.             cursor.pos.y += cursor.vel.y;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement