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

This commit is contained in:
Onek8 2025-04-03 09:27:55 +00:00
parent 62d3e65796
commit d2746fb087

View File

@ -9,7 +9,8 @@ class ArrayNode(LnxLogicVariableNodeMixin, LnxLogicTreeNode):
lnx_section = 'variable'
min_inputs = 0
def __init__(self):
def __init__(self, *args, **kwargs):
super(ArrayNode, self).__init__(*args, **kwargs)
self.register_id()
def lnx_init(self, context):