getDy method

double getDy ()

Gets the vertical movement for next update

Implementation

double getDy() {
  if (this.level.slowDownActive) {
    return this.dy * SlowDown.POWER;
  }
  return this.dy;
}