(_dt?: number)
| 64 | } |
| 65 | |
| 66 | advance(_dt?: number) { |
| 67 | const value = this._get() |
| 68 | const oldValue = this.get() |
| 69 | if (!isEqual(value, oldValue)) { |
| 70 | getAnimated(this)!.setValue(value) |
| 71 | this._onChange(value, this.idle) |
| 72 | } |
| 73 | // Become idle when all parents are idle or paused. |
| 74 | if (!this.idle && checkIdle(this._active)) { |
| 75 | becomeIdle(this) |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | protected _get() { |
| 80 | const inputs: Arrify<Input> = is.arr(this.source) |
no test coverage detected