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] 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]; }