From caafeea2f1271a043bea146c5c943c731bd959e3 Mon Sep 17 00:00:00 2001 From: LeenkxTeam Date: Sun, 6 Apr 2025 10:12:43 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/logic/LN_switch_output.py --- leenkx/blender/lnx/logicnode/logic/LN_switch_output.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leenkx/blender/lnx/logicnode/logic/LN_switch_output.py b/leenkx/blender/lnx/logicnode/logic/LN_switch_output.py index 07e15b5..f452d2f 100644 --- a/leenkx/blender/lnx/logicnode/logic/LN_switch_output.py +++ b/leenkx/blender/lnx/logicnode/logic/LN_switch_output.py @@ -10,8 +10,8 @@ class SwitchNode(LnxLogicTreeNode): lnx_version = 4 min_inputs = 2 - def __init__(self): - super(SwitchNode, self).__init__() + def __init__(self, *args, **kwargs): + super(SwitchNode, self).__init__(*args, **kwargs) array_nodes[self.get_id_str()] = self def lnx_init(self, context):