Click or drag to resize

VisualScriptCustomNode Fields

The VisualScriptCustomNode type exposes the following members.

Fields
  NameDescription
Public fieldStatic memberStepExitFunctionBit

Hint used by _Step(Array, Array, Int32, Array) to tell that control should stop and exit the function.

Public fieldStatic memberStepGoBackBit

Hint used by _Step(Array, Array, Int32, Array) to tell that control should return back, either hitting a previous or exiting the function.

Public fieldStatic memberStepNoAdvanceBit
Public fieldStatic memberStepPushStackBit

Hint used by _Step(Array, Array, Int32, Array) 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.

Public fieldStatic memberStepYieldBit

Hint used by _Step(Array, Array, Int32, Array) 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.

Top
See Also