Navigation
API > API/Plugins > API/Plugins/MassEntity
References
| Module | MassEntity |
| Header | /Engine/Plugins/Runtime/MassEntity/Source/MassEntity/Public/MassCommands.h |
| Include | #include "MassCommands.h" |
Syntax
enum EMassCommandOperationType
{
None,
Create,
Add,
Remove,
ChangeComposition,
Set,
Destroy,
MAX,
}
Values
| Name | Description |
|---|---|
| None | |
| Create | |
| Add | |
| Remove | |
| ChangeComposition | |
| Set | |
| Destroy | Depending on specific command, so this group will always be executed after the Add group |
| MAX |
Remarks
Enum used by MassBatchCommands to declare their "type". This data is later used to group commands so that command effects are applied in a controllable fashion Important: if changed make sure to update FMassCommandBuffer::Flush.CommandTypeOrder as well