Related help topics
Outputs | |||||
Out | event |
This event is triggered when the node finishes its evaluation. | |||
Inputs | |||||
string | Assert |
The type of condition to apply to the two inputs that must be fulfilled for the assert to pass. Accepted values: a equals b a not equals b a is less than b a is less or equal than b a is greater or equal than b a is greater than b | |||
generic | A |
A generic value (any input type) the use for verification | |||
generic | B |
A generic value (any input type) the use for verification | |||
event | In |
This event triggers the evaluation of this node. |
If the criteria is not fulfilled the program will exit with an error.
Available in Unit Flow Editor, Level Flow Editor, and External Flow Editor.
Outputs | |||||
Out | event |
This event is triggered when the node finishes its evaluation. | |||
Inputs | |||||
string | Label |
The label to print. | |||
string | Text |
The text to print. | |||
event | In |
This event triggers the evaluation of this node. |
Available in Unit Flow Editor, Level Flow Editor, and External Flow Editor.
Outputs | |||||
Out | event |
This event is triggered when the node finishes its evaluation. | |||
Inputs | |||||
vector3 | Color |
The color of the text. | |||
string | Label |
The label to print. | |||
string | Text |
The text to print. | |||
event | In |
This event triggers the evaluation of this node. |
Available in Unit Flow Editor, Level Flow Editor, and External Flow Editor.
Script node definition in file: core/appkit/appkit.script_flow_nodes
Outputs | |||||
Start | event |
Triggers after the node is started, run your Test Asserts in respose to this event. | |||
Completed | event |
Triggered after the event Start has completed | |||
Success | boolean |
A boolean indicating if all tests passed. | |||
Inputs | |||||
event | Start |
Starts the test scope. |
When Start is triggered it sets the current test scope and triggers the Start output event which should trigger the required tests. The Test Asserts will report success or failure. After returning from the Start output event the test results are reported (to log and console) and the Success output value will be set and the Completed event triggered.
Available in Unit Flow Editor, Level Flow Editor, and External Flow Editor.
Outputs | |||||
Out | event |
This event is triggered when the node finishes its evaluation. | |||
Inputs | |||||
string | Assert |
The type of condition to apply to the two inputs that must be fulfilled for the assert to pass. Accepted values: a equals b a not equals b a is less than b a is less or equal than b a is greater or equal than b a is greater than b | |||
generic | A |
A generic value (any input type) the use for verification | |||
generic | B |
A generic value (any input type) the use for verification | |||
event | In |
This event triggers the evaluation of this node. |
A Test Assert must be fired inside a Run Test scope, otherwise the criteria will not be tested. When executed it will report the result of the validation to the current Run Test scope.
Available in Unit Flow Editor, Level Flow Editor, and External Flow Editor.