From 8c758bf51f64c46b9fe2aeb09c3c1590101ac60f Mon Sep 17 00:00:00 2001 From: Onek8 Date: Thu, 3 Apr 2025 09:46:41 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/input/LN_on_swipe.py --- leenkx/blender/lnx/logicnode/input/LN_on_swipe.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):