Navigation
API > API/Plugins > API/Plugins/StateGraph > API/Plugins/StateGraph/FStateGraph
| |
|
| Name |
EStatus |
| Type |
enum |
| Header File |
/Engine/Plugins/Experimental/StateGraph/Source/StateGraph/Public/StateGraph.h |
| Include Path |
#include "StateGraph.h" |
Syntax
enum EStatus
{
NotStarted,
Running,
Waiting,
Blocked,
Completed,
Paused,
TimedOut,
}
Values
| Name |
Remarks |
| NotStarted |
State graph has not started yet. |
| Running |
State graph is running. |
| Waiting |
State graph is waiting for one or more nodes to complete. |
| Blocked |
State graph is blocked due to missing dependencies. |
| Completed |
State graph has completed. |
| Paused |
State graph has been paused. |
| TimedOut |
State graph timed out and stopped running. |