+
+
+
+
+
+
+ Properties
+
+
+ No object selected
+commit c2e91bca1cf627fdcf7164f7edd44a8897fccd8c Author: Chop <28534054+RChopin@users.noreply.github.com> Date: Thu Jun 26 20:00:04 2025 +0200 init diff --git a/index.html b/index.html new file mode 100644 index 0000000..9f16ded --- /dev/null +++ b/index.html @@ -0,0 +1,67 @@ + + +
+ + +No object selected
+No object selected
'; + } + } + + updateObjectProperties(panel) { + const obj = this.selectedObject; + panel.innerHTML = ` +Type: ${obj.type}
+ID: ${obj.id}
+Position: (${Math.round( + obj.x + )}, ${Math.round(obj.y)})
+Inputs: ${obj.connections.inputs.length}
+Outputs: ${ + obj.connections.outputs.length + }
+ID: ${conn.id}
+From: ${conn.from.data.name} (${ + conn.from.type + })
+To: ${conn.to.data.name} (${ + conn.to.type + })
+Flow Direction: ${conn.from.data.name} → ${ + conn.to.data.name + }
+