dollyBy method
Dollies toward (amount > 0) or away from the target, proportional to
the current distance and clamped to the distance limits.
Implementation
void dollyBy(double amount) {
distance = (distance * math.exp(-amount * dollySpeed)).clamp(
minDistance,
maxDistance,
);
}