auto-save 2026-05-14 07:45 (~6)

This commit is contained in:
2026-05-14 07:45:39 +08:00
parent c263af24fb
commit f1220fc957
6 changed files with 45 additions and 20 deletions

View File

@@ -72,6 +72,7 @@ export interface NodeData {
onDeleteCutout?: (frameIdx: number, elementId: string, cutoutId: string) => void // 删元素提取图
onOpenStoryboard?: (frameIdx: number) => void // 打开分镜头编排专属面板
onOpenWorkbench?: (frameIdx?: number) => void // 展开顶部分镜编排内嵌面板
clipboard?: ImageRef | null
onCopyImage?: (ref: ImageRef) => void // 复制图片到全局剪贴板(粘贴到分镜头编排插槽)
onGenerateProductFusionVideo?: (frameIdx: number, shot: ProductFusionShot) => Promise<void> | void
pinnedNodes?: Set<string> // 已钉住的节点 id 集合 — 钉住后位置 + 尺寸锁定
@@ -1957,6 +1958,7 @@ export function KeyframePanelNode({ data }: any) {
onChange={d.onExpandFrame}
onToggleSelect={d.onToggleFrame}
onJobUpdate={d.onJobUpdate}
clipboard={d.clipboard}
onCopyImage={d.onCopyImage}
onGenerateProductFusionVideo={d.onGenerateProductFusionVideo}
/>