()
| 819 | } |
| 820 | |
| 821 | protected _updateValue() { |
| 822 | const easedProgress = this.easing(this.getProgress()); |
| 823 | const length = this.initialValue.length; |
| 824 | this.currentValues.length = length; |
| 825 | for (let index = 0; index < length; index++) { |
| 826 | this.currentValues[index] = this.interpolate( |
| 827 | this.initialValue[index], |
| 828 | this.targetedValue[index], |
| 829 | easedProgress |
| 830 | ); |
| 831 | } |
| 832 | this.setValue(this.currentValues); |
| 833 | if (this.hasFinished()) { |
| 834 | this.onFinish(); |
| 835 | } |
| 836 | } |
| 837 | |
| 838 | getValue(): float { |
| 839 | return 0; |
no test coverage detected