From 176408174075b69cc37e20745ddfc1d4914c53cb Mon Sep 17 00:00:00 2001 From: Onek8 Date: Thu, 3 Apr 2025 09:45:19 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/draw/LN_draw_polygon.py --- leenkx/blender/lnx/logicnode/draw/LN_draw_polygon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leenkx/blender/lnx/logicnode/draw/LN_draw_polygon.py b/leenkx/blender/lnx/logicnode/draw/LN_draw_polygon.py index ac165c1..e803142 100644 --- a/leenkx/blender/lnx/logicnode/draw/LN_draw_polygon.py +++ b/leenkx/blender/lnx/logicnode/draw/LN_draw_polygon.py @@ -26,8 +26,8 @@ class DrawPolygonNode(LnxLogicTreeNode): num_choices: IntProperty(default=1, min=0) - def __init__(self): - super(DrawPolygonNode, self).__init__() + def __init__(self, *args, **kwargs): + super(DrawPolygonNode, self).__init__(*args, **kwargs) array_nodes[str(id(self))] = self def lnx_init(self, context):