(target, toProperties, duration, easing = null, delay = 0, when = this.duration)
| 110 | return this; |
| 111 | } |
| 112 | to(target, toProperties, duration, easing = null, delay = 0, when = this.duration) { |
| 113 | when += delay; |
| 114 | this.duration = Math.max(when + duration, this.duration); |
| 115 | this.tweens.push(Tween.to(target, toProperties, duration, easing, when)); |
| 116 | return this; |
| 117 | } |
| 118 | seekTo(time) { |
| 119 | let duration = this.duration; |
| 120 | time -= this.delay; |
no test coverage detected