()
| 604 | private _startParentTickClock(): void { |
| 605 | this._stopParentTickClock(); |
| 606 | const tick = () => { |
| 607 | if (this._paused) { |
| 608 | this._parentTickRaf = null; |
| 609 | return; |
| 610 | } |
| 611 | this._sendControl("tick"); |
| 612 | this._parentTickRaf = requestAnimationFrame(tick); |
| 613 | }; |
| 614 | this._parentTickRaf = requestAnimationFrame(tick); |
| 615 | } |
| 616 |
no test coverage detected