Navigation
API > API/Runtime > API/Runtime/CoreUObject
| |
|
| Name |
EGetObjectsFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/CoreUObject/Public/UObject/FindObjectFlags.h |
| Include Path |
#include "UObject/FindObjectFlags.h" |
Syntax
enum EGetObjectsFlags
{
None = 0,
IncludeNestedObjects = 1 << 0,
EvenIfUnreachable = 1 << 1,
}
Values
| Name |
Remarks |
| None |
|
| IncludeNestedObjects |
If specified, then objects whose outers directly or indirectly have Outer as an outer are included, these are the nested objects |
| EvenIfUnreachable |
Whether to include Unreachable objects (unsafe, only allowed inside of the garbage collector) |