From 977b2db376c36158122794e26ee8a7646d674fbc Mon Sep 17 00:00:00 2001 From: t3du <32546729+t3du@users.noreply.github.com> Date: Wed, 20 Oct 2021 09:48:17 -0300 Subject: [PATCH] change info --- blender/arm/logicnode/native/LN_call_haxe_static.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/blender/arm/logicnode/native/LN_call_haxe_static.py b/blender/arm/logicnode/native/LN_call_haxe_static.py index a5e1b0a6..c0c350e6 100644 --- a/blender/arm/logicnode/native/LN_call_haxe_static.py +++ b/blender/arm/logicnode/native/LN_call_haxe_static.py @@ -1,7 +1,9 @@ from arm.logicnode.arm_nodes import * class CallHaxeStaticNode(ArmLogicTreeNode): - """Calls the given static Haxe function with args (before it was using [tree] instead of args) + """Calls the given static Haxe function and optionally passes arguments to it. + + **Compatibility info**: prior versions of this node didn't accept arguments and instead implicitly passed the current logic tree object as the first argument. In newer versions you need to pass that argument explicitly if the called function expects it. @input Function: the full module path to the function. @output Result: the result of the function."""