diff --git a/leenkx/blender/lnx/logicnode/math/LN_quaternion_math.py b/leenkx/blender/lnx/logicnode/math/LN_quaternion_math.py index f408823..72a2344 100644 --- a/leenkx/blender/lnx/logicnode/math/LN_quaternion_math.py +++ b/leenkx/blender/lnx/logicnode/math/LN_quaternion_math.py @@ -149,8 +149,8 @@ class QuaternionMathNode(LnxLogicTreeNode): name='', default='Add', set=set_enum, get=get_enum) - def __init__(self): - super(QuaternionMathNode, self).__init__() + def __init__(self, *args, **kwargs): + super(QuaternionMathNode, self).__init__(*args, **kwargs) array_nodes[str(id(self))] = self def lnx_init(self, context):