void moveTowards(Vec2 other, double maxDelta) { x = MathUtils.moveTowards(x, other.x, maxDelta); y = MathUtils.moveTowards(y, other.y, maxDelta); }