From 8354cd57a3cb0a61a9a831574ee1ae4083c16cdb Mon Sep 17 00:00:00 2001 From: Luzie Ahrens Date: Mon, 29 Jun 2026 18:17:43 +0200 Subject: [PATCH] change node IDs --- data-structure-graphical-coding.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/data-structure-graphical-coding.md b/data-structure-graphical-coding.md index aef7958..555e10c 100644 --- a/data-structure-graphical-coding.md +++ b/data-structure-graphical-coding.md @@ -172,13 +172,13 @@ A graph with one trigger and one effect, connected: { "nodes": [ { - "id": "gc-1-1000000000", + "id": "gc-1", "kind": "trigger", "label": "On Click", "position": { "x": 120, "y": 200 }, "inputs": [], "outputs": [ - { "id": "gc-1-1000000000-o0", "name": "fired", "dataType": "boolean" } + { "id": "gc-1-o0", "name": "fired", "dataType": "boolean" } ], "config": { "sourceItemId": null, @@ -187,12 +187,12 @@ A graph with one trigger and one effect, connected: } }, { - "id": "gc-2-2000000000", + "id": "gc-2", "kind": "effect", "label": "Skybox Color", "position": { "x": 480, "y": 200 }, "inputs": [ - { "id": "gc-2-2000000000-i0", "name": "trigger", "dataType": "boolean" } + { "id": "gc-2-i0", "name": "trigger", "dataType": "boolean" } ], "outputs": [], "config": { @@ -206,11 +206,11 @@ A graph with one trigger and one effect, connected: ], "connections": [ { - "id": "conn-9999999999", - "fromNode": "gc-1-1000000000", - "fromPort": "gc-1-1000000000-o0", - "toNode": "gc-2-2000000000", - "toPort": "gc-2-2000000000-i0" + "id": "conn-9", + "fromNode": "gc-1", + "fromPort": "gc-1-o0", + "toNode": "gc-2", + "toPort": "gc-2-i0" } ] }