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):