feat(node): initial leaf / shape nodes
All checks were successful
🚀 Lint & Test & Deploy / release (pull_request) Successful in 4m1s

This commit is contained in:
2026-02-09 18:32:52 +01:00
parent 235ee5d979
commit 8865b9b032
10 changed files with 88 additions and 18 deletions

View File

@@ -194,7 +194,11 @@ export class GraphState {
if (node?.inputs?.[key] === undefined) continue;
if ('setting' in node.inputs[key]) continue;
if (node.inputs[key].hidden) continue;
if (node.inputs[key].type === 'shape') {
if (
node.inputs[key].type === 'shape'
&& node.inputs[key].external !== true
&& node.inputs[key].internal !== false
) {
height += 20;
continue;
}