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.

24 lines
334 B

package controller;
public class ReboundController extends ObjectController{
@Override
public void updateObject() {
if (this.getX() < 30 || this.getX() > 670 ) {
setVX(getVX() * -1) ;
}
if (getY() < 30 || getY() > 670 ) {
setVY(getVY() * -1) ;
}
super.applySpeedVector();
}
}