protected mapRatioToVariable(ratio: number) {
    super.mapRatioToVariable(ratio);
    this.currentAlpha =
      this.currentAlpha * ratio + this.destinationAlpha * (1 - ratio);
  }