()
| 713 | } |
| 714 | |
| 715 | protected _updateValue() { |
| 716 | const easedProgress = this.easing(this.getProgress()); |
| 717 | const value = this.interpolate( |
| 718 | this.initialValue, |
| 719 | this.targetedValue, |
| 720 | easedProgress |
| 721 | ); |
| 722 | this.currentValue = value; |
| 723 | this.setValue(value); |
| 724 | if (this.hasFinished()) { |
| 725 | this.onFinish(); |
| 726 | } |
| 727 | } |
| 728 | |
| 729 | getValue(): float { |
| 730 | return this.currentValue; |
nothing calls this directly
no test coverage detected