Function
printOnionShotSaved
(saved: string, elementCount: number)
Source from the content-addressed store, hash-verified
| 695 | } |
| 696 | |
| 697 | function printOnionShotSaved(saved: string, elementCount: number): void { |
| 698 | console.log(`${c.success("◇")} onion-skin screenshot saved ${c.accent(saved)}`); |
| 699 | console.log( |
| 700 | c.dim( |
| 701 | ` ${elementCount} element${elementCount === 1 ? "" : "s"} · open it to verify the motion matches your target, then read the keyframes below.`, |
| 702 | ), |
| 703 | ); |
| 704 | console.log(); |
| 705 | } |
| 706 | |
| 707 | /** Render the 3D onion-skin screenshot for every animated element. Returns true |
| 708 | * when the command should early-return (a guard failed). */ |
Tested by
no test coverage detected