Advertisement
Guest User

move

a guest
Aug 17th, 2010
918
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. move : function () {
  2.     var center = this.shape.center.move(this.speed);
  3.     // если объект не влез по ширине - разворачиваем его по оси X
  4.     if (!center.x.between(0,this.full.width)) {
  5.         (this.speed.x *= -1);
  6.     }
  7.     // если объект не влез по высоте - разворачиваем его по оси Y
  8.     if (!center.y.between(0,this.full.height)) {
  9.         (this.speed.y *= -1);
  10.     }
  11.     return this;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement