Space von Team 22 (Nico B. Benjamin F. Lea A.)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
360 B

2 years ago
  1. package controller;
  2. public class ReboundController extends ObjectController {
  3. @Override
  4. public void updateObject() {
  5. if (this.getX() < 30 || this.getX() > 670) {
  6. this.setVX(this.getVX()*(-1));
  7. }
  8. if (this.getY() < 30 || this.getY() > 670) {
  9. this.setVY(this.getVY()*(-1));
  10. }
  11. this.applySpeedVector();
  12. }
  13. }