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

This commit is contained in:
LeenkxTeam 2025-04-06 10:11:19 +00:00
parent af147c9c63
commit 2edee3fe68

View File

@ -51,8 +51,8 @@ class SelectNode(LnxLogicTreeNode):
# a property in order to be saved with each individual node
num_choices: IntProperty(default=1, min=0)
def __init__(self):
super().__init__()
def __init__(self, *args, **kwargs):
super(SelectNode, self).__init__(*args, **kwargs)
array_nodes[str(id(self))] = self
def lnx_init(self, context):