Navigation
API > API/Developer > API/Developer/Localization
Flags controlling the behavior used when loading manifests and archives into FLocTextHelper
| Name | ELocTextHelperLoadFlags |
| Type | enum |
| Header File | /Engine/Source/Developer/Localization/Public/LocTextHelper.h |
| Include Path | #include "LocTextHelper.h" |
Syntax
enum ELocTextHelperLoadFlags
{
Load = 1<<0,
Create = 1<<1,
LoadOrCreate = Load | Create,
}
Values
| Name | Remarks |
|---|---|
| Load | Attempt to load an existing file, or fail is none is present |
| Create | Attempt to create a new file, potentially replacing an existing file |
| LoadOrCreate | Attempt to load an existing file, or create a new file if none is present |