(selectors: Set<string>, cmp: SurfacedComposition)
| 630 | // every channel (rotation / scale / opacity / colour / 3D), not just x/y. A |
| 631 | // 0-duration `set` is a pen-up marker, not motion. |
| 632 | function addTraceSelectors(selectors: Set<string>, cmp: SurfacedComposition): void { |
| 633 | for (const tr of cmp.traces) selectors.add(tr.target); |
| 634 | } |
| 635 | |
| 636 | function addTweenSelectors(selectors: Set<string>, cmp: SurfacedComposition): void { |
| 637 | for (const t of cmp.tweens) { |
no test coverage detected