Added tooltip to nodes to better explain their functionality.

Readded node deletion.
This commit is contained in:
2026-05-14 12:36:59 +02:00
parent 300c8f5a42
commit 588879951d
31 changed files with 528 additions and 23 deletions
@@ -41,6 +41,7 @@ public partial class IfNodeDisplay : NodeDisplay
ifNode.amount = (int)valueContainer.GetNode<SpinBox>("./Amount").Value;
OptionButton comparators = valueContainer.GetNode<OptionButton>("./Comparator");
if(comparators.GetSelectedId() == -1) return;
ifNode.comparator = comparators.GetItemText(comparators.GetSelectedId());
}