Update leenkx/blender/lnx/logicnode/draw/LN_draw_polygon.py

This commit is contained in:
Onek8 2025-04-03 09:45:19 +00:00
parent c90bde8719
commit 1764081740

View File

@ -26,8 +26,8 @@ class DrawPolygonNode(LnxLogicTreeNode):
num_choices: IntProperty(default=1, min=0) num_choices: IntProperty(default=1, min=0)
def __init__(self): def __init__(self, *args, **kwargs):
super(DrawPolygonNode, self).__init__() super(DrawPolygonNode, 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):