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

This commit is contained in:
Onek8 2025-04-03 09:57:33 +00:00
parent 8c758bf51f
commit 2b16b565a8

View File

@ -7,8 +7,8 @@ class AlternateNode(LnxLogicTreeNode):
lnx_section = 'flow'
lnx_version = 2
def __init__(self):
super(AlternateNode, self).__init__()
def __init__(self, *args, **kwargs):
super(AlternateNode, self).__init__(*args, **kwargs)
array_nodes[str(id(self))] = self
def lnx_init(self, context):