diff --git a/leenkx/blender/lnx/logicnode/math/LN_vector_math.py b/leenkx/blender/lnx/logicnode/math/LN_vector_math.py index 43704f0..ccb68a6 100644 --- a/leenkx/blender/lnx/logicnode/math/LN_vector_math.py +++ b/leenkx/blender/lnx/logicnode/math/LN_vector_math.py @@ -119,7 +119,8 @@ class VectorMathNode(LnxLogicTreeNode): ('Reflect', 'Reflect', 'Reflect')], name='', default='Add', set=set_enum, get=get_enum) - def __init__(self): + def __init__(self, *args, **kwargs): + super(VectorMathNode, self).__init__(*args, **kwargs) array_nodes[str(id(self))] = self def lnx_init(self, context):