getDy method
Gets the vertical movement for next update
Implementation
double getDy() {
if (this.level.slowDownActive) {
return this.dy * SlowDown.POWER;
}
return this.dy;
}
Gets the vertical movement for next update
double getDy() {
if (this.level.slowDownActive) {
return this.dy * SlowDown.POWER;
}
return this.dy;
}