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

This commit is contained in:
Onek8 2025-04-03 10:01:30 +00:00
parent db1c3bdf4c
commit eb033149a0

View File

@ -21,8 +21,8 @@ class CaseIndexNode(LnxLogicTreeNode):
num_choices: IntProperty(default=0, min=0) num_choices: IntProperty(default=0, min=0)
def __init__(self): def __init__(self, *args, **kwargs):
super().__init__() super(CaseIndexNode, self).__init__(*args, **kwargs)
array_nodes[str(id(self))] = self array_nodes[str(id(self))] = self
def lnx_init(self, context): def lnx_init(self, context):