Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/FStripDataFlags
Engine strip flags
| Name | EStrippedData |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/EngineUtils.h |
| Include Path | #include "EngineUtils.h" |
Syntax
enum EStrippedData
{
None = 0,
EditorOnly = 1,
AudioVisual = 2,
NeededForCooking = 4,
All = 0xff,
}
Values
| Name | Remarks |
|---|---|
| None | |
| EditorOnly | This flag means that Editor-only data is stripped |
| AudioVisual | This flag means that AudioVisual data is stripped (e.g. target is dedicated server). |
| NeededForCooking | This flag means that all data needed to cook packages will be stripped. |
| All | All flags |