Navigation
API > API/Plugins > API/Plugins/StateGraph > API/Plugins/StateGraph/FStateGraphNode
| |
|
| Name |
EStatus |
| Type |
enum |
| Header File |
/Engine/Plugins/Experimental/StateGraph/Source/StateGraph/Public/StateGraph.h |
| Include Path |
#include "StateGraph.h" |
Syntax
enum EStatus
{
NotStarted,
Blocked,
Started,
Completed,
TimedOut,
}
Values
| Name |
Remarks |
| NotStarted |
State graph has not attempted to start this node yet, or the node has been reset. |
| Blocked |
State graph attempted to start this node, but it is waiting on dependencies or some external blocking condition. |
| Started |
State graph has started this node by calling Start(). |
| Completed |
Node's Complete() function has been called, allowing dependent nodes to run. |
| TimedOut |
Node timed out. |