Update leenkx/blender/lnx/logicnode/logic/LN_switch_output.py

This commit is contained in:
LeenkxTeam 2025-04-06 10:12:43 +00:00
parent 2edee3fe68
commit caafeea2f1

View File

@ -10,8 +10,8 @@ class SwitchNode(LnxLogicTreeNode):
lnx_version = 4 lnx_version = 4
min_inputs = 2 min_inputs = 2
def __init__(self): def __init__(self, *args, **kwargs):
super(SwitchNode, self).__init__() super(SwitchNode, self).__init__(*args, **kwargs)
array_nodes[self.get_id_str()] = self array_nodes[self.get_id_str()] = self
def lnx_init(self, context): def lnx_init(self, context):