From 5e4ac6dd0b09215e7977c5aa0f343faf94342efb Mon Sep 17 00:00:00 2001 From: LeenkxTeam Date: Sun, 6 Apr 2025 10:16:57 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/math/LN_math.py --- leenkx/blender/lnx/logicnode/math/LN_math.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/leenkx/blender/lnx/logicnode/math/LN_math.py b/leenkx/blender/lnx/logicnode/math/LN_math.py index 6763087..47e7105 100644 --- a/leenkx/blender/lnx/logicnode/math/LN_math.py +++ b/leenkx/blender/lnx/logicnode/math/LN_math.py @@ -102,7 +102,8 @@ class MathNode(LnxLogicTreeNode): property1: HaxeBoolProperty('property1', name='Clamp', default=False) - def __init__(self): + def __init__(self, *args, **kwargs): + super(MathNode, self).__init__(*args, **kwargs) array_nodes[str(id(self))] = self def lnx_init(self, context):