We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa58b74 commit 0cd8111Copy full SHA for 0cd8111
src/nodes/logic/VariableValueAssignment.ts
@@ -37,7 +37,14 @@ export class VariableValueAssignment extends ExecutableLogicNode {
37
? this.varValue.connectedTo.type
38
: DataType.wildcard;
39
40
- if (!this.varOutlet.connectedTo) this.varOutlet.type = type;
+ if (!this.varOutlet.connectedTo)
41
+ {
42
+ this.varOutlet.type = type;
43
+ this.customNodeName = undefined;
44
+ }
45
+ else this.customNodeName = this.varOutlet.connectedTo.owner.nodeName + " = ...";
46
+
47
48
if (!this.varValue.connectedTo) this.varValue.type = type;
49
50
super.update();
0 commit comments