diff --git a/leenkx/blender/lnx/logicnode/input/LN_on_swipe.py b/leenkx/blender/lnx/logicnode/input/LN_on_swipe.py index d712ef1..f87e98d 100644 --- a/leenkx/blender/lnx/logicnode/input/LN_on_swipe.py +++ b/leenkx/blender/lnx/logicnode/input/LN_on_swipe.py @@ -55,8 +55,8 @@ class OnSwipeNode(LnxLogicTreeNode): min_outputs = 4 max_outputs = 12 - def __init__(self): - super(OnSwipeNode, self).__init__() + def __init__(self, *args, **kwargs): + super(OnSwipeNode, self).__init__(*args, **kwargs) array_nodes[str(id(self))] = self def lnx_init(self, context):