Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/UObject
References
| Module | CoreUObject |
| Header | /Engine/Source/Runtime/CoreUObject/Public/UObject/UObjectHash.h |
| Include | #include "UObject/UObjectHash.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/UObjectHash.cpp |
bool StaticFindAllObjectsFastInternal
(
TArray < UObject * > & OutFoundObjects,
const UClass * ObjectClass,
FName ObjectName,
bool bExactClass,
EObjectFlags ExcludeFlags,
EInternalObjectFlags ExclusiveInternalFlags
)
Remarks
Private internal version of StaticFindAllObjectsFast that allows using 0 exclusion flags. Returns true if any objects were found, false otherwise
Parameters
| Name | Description |
|---|---|
| OutFoundObjects | Array of objects matching the specified search parameters |
| ObjectClass | The to be found object's class |
| ObjectName | The to be found object's name |
| bExactClass | Whether to require an exact match with the passed in class |
| ExcludeFlags | Ignores objects that contain any of the specified exclusive flags |
| ExclusiveInternalFlags | Ignores objects that contain any of the specified internal exclusive flags |