Navigation
API > API/Runtime > API/Runtime/MassEntity
| |
|
| Name |
EProcessorExecutionFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/MassEntity/Public/MassProcessingTypes.h |
| Include Path |
#include "MassProcessingTypes.h" |
Syntax
enum EProcessorExecutionFlags
{
None = 0,
Standalone = 1 << 0,
Server = 1 << 1,
Client = 1 << 2,
Editor = 1 << 3,
EditorWorld = 1 << 4,
AllNetModes = Standalone | Server | Client,
AllWorldModes = Standalone | Server | Client | EditorWorld,
All = Standalone | Server | Client | Editor | EditorWorld,
}
Values
| Name |
Remarks |
| None |
|
| Standalone |
|
| Server |
|
| Client |
|
| Editor |
|
| EditorWorld |
|
| AllNetModes |
|
| AllWorldModes |
|
| All |
|