Navigation
API > API/Runtime > API/Runtime/Core
Loading policy to use with String Table assets
| Name | EStringTableLoadingPolicy |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Internationalization/StringTableCoreFwd.h |
| Include Path | #include "Internationalization/StringTableCoreFwd.h" |
Syntax
enum EStringTableLoadingPolicy
{
Find,
FindOrLoad,
FindOrFullyLoad,
}
Values
| Name | Remarks |
|---|---|
| Find | Try and find the String Table, but do not attempt to load it |
| FindOrLoad | Try and find the String Table, or attempt of load it if it cannot be found (note: the string table found may not be fully loaded) |
| FindOrFullyLoad | Try and find the String Table, or attempt to load it if it cannot be found, or if it was found but not fully loaded (note: this should be used sparingly in places where it is definitely safe to perform a blocking load) |