Enum VisualScriptCustomNode.Constants

enum Constants : int { ... }

Enum members

NameDescription
stepExitFunctionBit Hint used by step to tell that control should stop and exit the function.
stepGoBackBit Hint used by step to tell that control should return back, either hitting a previous constant STEP_PUSH_STACK_BIT or exiting the function.
stepNoAdvanceBit
stepPushStackBit Hint used by step to tell that control should return to it when there is no other node left to execute. This is used by VisualScriptCondition to redirect the sequence to the "Done" port after the true/false branch has finished execution.
stepYieldBit Hint used by step to tell that the function should be yielded. Using this requires you to have at least one working memory slot, which is used for the VisualScriptFunctionState.