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):