Update leenkx/blender/lnx/logicnode/array/LN_array_add.py

This commit is contained in:
Onek8 2025-04-03 09:28:34 +00:00
parent d2746fb087
commit de41800e1c

View File

@ -12,8 +12,8 @@ class ArrayAddNode(LnxLogicTreeNode):
lnx_version = 5
min_inputs = 6
def __init__(self):
super(ArrayAddNode, self).__init__()
def __init__(self, *args, **kwargs):
super(ArrayAddNode, self).__init__(*args, **kwargs)
array_nodes[self.get_id_str()] = self
def lnx_init(self, context):