From 48d28f68736e62886c7ebd7c8a950d2aaffa1a7a Mon Sep 17 00:00:00 2001 From: Onek8 Date: Thu, 3 Apr 2025 10:02:33 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/logic/LN_function.py --- leenkx/blender/lnx/logicnode/logic/LN_function.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leenkx/blender/lnx/logicnode/logic/LN_function.py b/leenkx/blender/lnx/logicnode/logic/LN_function.py index 7752fda..9d80db1 100644 --- a/leenkx/blender/lnx/logicnode/logic/LN_function.py +++ b/leenkx/blender/lnx/logicnode/logic/LN_function.py @@ -11,8 +11,8 @@ class FunctionNode(LnxLogicTreeNode): lnx_version = 2 min_outputs = 1 - def __init__(self): - super(FunctionNode, self).__init__() + def __init__(self, *args, **kwargs): + super(FunctionNode, self).__init__(*args, **kwargs) array_nodes[str(id(self))] = self def lnx_init(self, context):