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

This commit is contained in:
Onek8 2025-04-03 10:04:43 +00:00
parent be63323c09
commit a627a52d46

View File

@ -8,8 +8,8 @@ class SequenceNode(LnxLogicTreeNode):
lnx_version = 2
min_outputs = 0
def __init__(self):
super(SequenceNode, self).__init__()
def __init__(self, *args, **kwargs):
super(SequenceNode, self).__init__(*args, **kwargs)
array_nodes[self.get_id_str()] = self
def lnx_init(self, context):