From 292013b6cf699dd85b6c66d6b3d51a2e66a60d03 Mon Sep 17 00:00:00 2001 From: PM <65325+j2l@users.noreply.github.com> Date: Tue, 6 Apr 2021 15:20:43 +0200 Subject: [PATCH 1/3] data_store to events menu I guess events.js manages events menu and not basic one :) If I'm wrong, please let me know with a quick explanation and drop it. --- src/nodes/events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nodes/events.js b/src/nodes/events.js index 943ce2b5a0..3938b6a4fe 100644 --- a/src/nodes/events.js +++ b/src/nodes/events.js @@ -353,5 +353,5 @@ o.data = null; } - LiteGraph.registerNodeType("basic/data_store", DataStore); + LiteGraph.registerNodeType("events/data_store", DataStore); })(this); From 039ad19372701f603565752f399b384d64639855 Mon Sep 17 00:00:00 2001 From: PM <65325+j2l@users.noreply.github.com> Date: Tue, 6 Apr 2021 15:52:38 +0200 Subject: [PATCH 2/3] Added an output to Converter I hope I didn't misunderstood the converter node, it needs an output right? --- src/nodes/math.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nodes/math.js b/src/nodes/math.js index 601d8beba7..93a4b90536 100755 --- a/src/nodes/math.js +++ b/src/nodes/math.js @@ -4,6 +4,7 @@ //Converter function Converter() { this.addInput("in", "*"); + this.addOutput("out"); this.size = [80, 30]; } From 980baed1eb36883813e8887955b36bf28632b4fe Mon Sep 17 00:00:00 2001 From: PM <65325+j2l@users.noreply.github.com> Date: Tue, 6 Apr 2021 15:56:06 +0200 Subject: [PATCH 3/3] back to basic --- src/nodes/events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nodes/events.js b/src/nodes/events.js index 3938b6a4fe..943ce2b5a0 100644 --- a/src/nodes/events.js +++ b/src/nodes/events.js @@ -353,5 +353,5 @@ o.data = null; } - LiteGraph.registerNodeType("events/data_store", DataStore); + LiteGraph.registerNodeType("basic/data_store", DataStore); })(this);