Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/UObject
References
| Module | CoreUObject |
| Header | /Engine/Source/Runtime/CoreUObject/Public/UObject/UObjectGlobals.h |
| Include | #include "UObject/UObjectGlobals.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/UObjectGlobals.cpp |
bool StaticFindAllObjects
(
TArray < UObject * > & OutFoundObjects,
UClass * Class,
const TCHAR * Name,
bool ExactClass
)
Remarks
Tries to find all objects matching the search paramters in memory. This will handle fully qualified paths of the form /path/packagename.object:subobject and resolve references for you. Returns true if any objects were found, false otherwise
Parameters
| Name | Description |
|---|---|
| OutFoundObjects | Array of objects matching the search parameters |
| Class | The to be found object's class |
| Name | The object path to search for an object, relative to InOuter |
| ExactClass | Whether to require an exact match with the passed in class |