()
| 631 | } |
| 632 | |
| 633 | private internalPlay(): void { |
| 634 | this._ownerBaseX = this._owner.x; |
| 635 | this._ownerBaseY = this._owner.y; |
| 636 | this._totalTasks = 1; |
| 637 | |
| 638 | for (const item of this._items) { |
| 639 | if (item.target) this.playItem(item); |
| 640 | } |
| 641 | this._totalTasks--; |
| 642 | } |
| 643 | |
| 644 | private callHook(item: ITransitionItem, tweenEnd: boolean): void { |
| 645 | const hook = tweenEnd ? item.tweenConfig?.endHook : item.hook; |
no test coverage detected