|
|
|
@ -260,7 +260,6 @@ export function getConnectedInputsPure( |
|
|
|
type: "image" | "text" | "video" | "audio" | "3d", |
|
|
|
value: string, |
|
|
|
sourceNode?: WorkflowNode, |
|
|
|
targetHandle?: string | null |
|
|
|
) => { |
|
|
|
if (type === "3d") { |
|
|
|
model3d = value; |
|
|
|
@ -410,7 +409,7 @@ export function getConnectedInputsPure( |
|
|
|
if (!value) return; |
|
|
|
|
|
|
|
if (handleId === SINGLE_INPUT_HANDLE_ID) { |
|
|
|
addTypedValue(type, value, sourceNode, handleId); |
|
|
|
addTypedValue(type, value, sourceNode); |
|
|
|
if (sourceNode.type === "easeCurve") { |
|
|
|
const sourceData = sourceNode.data as EaseCurveNodeData; |
|
|
|
easeCurve = { |
|
|
|
@ -435,7 +434,7 @@ export function getConnectedInputsPure( |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
addTypedValue(type, value, sourceNode, handleId); |
|
|
|
addTypedValue(type, value, sourceNode); |
|
|
|
if (sourceNode.type === "easeCurve") { |
|
|
|
const sourceData = sourceNode.data as EaseCurveNodeData; |
|
|
|
easeCurve = { |
|
|
|
|