Navigation
API > API/Runtime > API/Runtime/UniversalObjectLocator
References
| Module | UniversalObjectLocator |
| Header | /Engine/Source/Runtime/UniversalObjectLocator/Public/UniversalObjectLocatorResolveParams.h |
| Include | #include "UniversalObjectLocatorResolveParams.h" |
Syntax
enum ELocatorResolveFlags
{
None,
Load = 1 << 0,
Unload = 1 << 1,
Async = 1 << 2,
WillWait = 1 << 3,
AsyncWait = Async | WillWait,
}
Values
| Name | Description |
|---|---|
| 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. |