From c9b11405f51025767bd153aa09a33a7d1d136254 Mon Sep 17 00:00:00 2001 From: Sebastian <1323131+TheMcSebi@users.noreply.github.com> Date: Sun, 13 Aug 2023 17:59:27 +0200 Subject: [PATCH] fixed connections from primitives to inputtype * --- web/extensions/core/widgetInputs.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/extensions/core/widgetInputs.js b/web/extensions/core/widgetInputs.js index 8d81f295f..f1d4a9dd1 100644 --- a/web/extensions/core/widgetInputs.js +++ b/web/extensions/core/widgetInputs.js @@ -260,6 +260,9 @@ app.registerExtension({ onConnectOutput(slot, type, input, target_node, target_slot) { // Fires before the link is made allowing us to reject it if it isn't valid + if (input.type == "*") { + return true; + } // No widget, we cant connect if (!input.widget) {