Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/UObject > API/Runtime/CoreUObject/UObject/StaticFindObjectFastInternal
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 |
UObject * StaticFindObjectFastInternal
(
const UClass * Class,
const UObject * InOuter,
FName InName,
bool ExactClass,
bool AnyPackage,
EObjectFlags ExclusiveFlags,
EInternalObjectFlags ExclusiveInternalFlags
)
Remarks
Private internal version of StaticFindObjectFast that allows using 0 exclusion flags. Returns a pointer to the found object or NULL if none could be found
Parameters
| Name | Description |
|---|---|
| Class | The to be found object's class |
| InOuter | The to be found object's outer |
| InName | The to be found object's class |
| ExactClass | Whether to require an exact match with the passed in class |
| AnyPackage | Whether to look in any package |
| ExclusiveFlags | Ignores objects that contain any of the specified exclusive flags |
| ExclusiveInternalFlags | Ignores objects that contain any of the specified internal exclusive flags |