Skip to content

Commit

Permalink
Forgot to commit that part.
Browse files Browse the repository at this point in the history
  • Loading branch information
steffen-wilke committed Nov 28, 2020
1 parent 5a5b666 commit a36cce6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/de/gurkenlabs/litiengine/physics/MovementController.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,11 @@ public Force getForce(String identifier) {
return this.getActiveForces().stream().filter(x -> x.getIdentifier() != null && x.getIdentifier().equals(identifier)).findFirst().orElse(null);
}

@Override
public double getMoveAngle() {
return this.moveAngle;
}

@Override
public void setVelocity(double velocity) {
final double maxVelocity = this.getEntity().getTickVelocity();
Expand Down

0 comments on commit a36cce6

Please sign in to comment.