change info

This commit is contained in:
t3du 2021-10-20 09:48:17 -03:00 committed by GitHub
parent ebb3076431
commit 977b2db376
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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."""