Update leenkx/blender/lnx/logicnode/random/LN_random_output.py

This commit is contained in:
LeenkxTeam 2025-04-06 10:06:39 +00:00
parent e1d48e4289
commit 594cbeffbe

View File

@ -8,7 +8,8 @@ class RandomOutputNode(LnxLogicTreeNode):
lnx_section = 'logic' lnx_section = 'logic'
lnx_version = 1 lnx_version = 1
def __init__(self): def __init__(self, *args, **kwargs):
super(RandomOutputNode, 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):