Navigation
API > API/Runtime > API/Runtime/CoreUObject
Loading policy to use with ParseObject
| Name | EParseObjectLoadingPolicy |
| Type | enum |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/UObjectGlobals.h |
| Include Path | #include "UObject/UObjectGlobals.h" |
Syntax
enum EParseObjectLoadingPolicy
{
Find,
FindOrLoad,
}
Values
| Name | Remarks |
|---|---|
| Find | Try and find the object, but do not attempt to load it |
| FindOrLoad | Try and find the object, or attempt of load it if it cannot be found (note: loading may be globally disabled via the CVar "s.AllowParseObjectLoading") |