(comp: Composition, animationId: string, ease: string)
| 103 | } |
| 104 | |
| 105 | export function updateEase(comp: Composition, animationId: string, ease: string): void { |
| 106 | if (!comp.can({ type: "setGsapTween", animationId, properties: { ease } })) return; |
| 107 | comp.setGsapTween(animationId, { ease }); |
| 108 | } |
| 109 | |
| 110 | // ── Undo / redo ─────────────────────────────────────────────────────────────── |
| 111 |
nothing calls this directly
no test coverage detected