Navigation
API > API/Runtime > API/Runtime/UniversalObjectLocator
| |
|
| Name |
ELocatorResolveFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/UniversalObjectLocator/Public/UniversalObjectLocatorResolveParams.h |
| Include Path |
#include "UniversalObjectLocatorResolveParams.h" |
Syntax
enum ELocatorResolveFlags
{
None,
Load = 1 << 0,
Unload = 1 << 1,
Async = 1 << 2,
WillWait = 1 << 3,
AsyncWait = Async | WillWait,
}
Values
| Name |
Remarks |
| None |
|
| Load |
Flag to indicate whether the object should be loaded if it is not currently findable |
| Unload |
Flag to indicate whether the object should be unloaded or destroyed. Mutually exclusive with bLoad. |
| Async |
Indicates that the operation should be performed asynchronously if possible. |
| WillWait |
Indicates the calling code is going to block waiting for the result. |
| AsyncWait |
Combination of Async and WillWait. |