(target, fromProperties, duration, easing = null, delay = 0, when = this.duration)
| 98 | return this; |
| 99 | } |
| 100 | from(target, fromProperties, duration, easing = null, delay = 0, when = this.duration) { |
| 101 | when += delay; |
| 102 | this.duration = Math.max(when + duration, this.duration); |
| 103 | this.tweens.push(Tween.from(target, fromProperties, duration, easing, when)); |
| 104 | return this; |
| 105 | } |
| 106 | on(target, onProperties, duration, easing = null, delay = 0, when = this.duration) { |
| 107 | when += delay; |
| 108 | this.duration = Math.max(when + duration, this.duration); |
no test coverage detected