Navigation
API > API/Runtime > API/Runtime/CoreUObject
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
UObject * StaticFindFirstObjectFastInternal
(
const UClass* ObjectClass, |
Private internal version of StaticFindFirstObject that allows using 0 exclusion flags. | UObject/UObjectHash.h | |
UObject * StaticFindFirstObjectFastInternal
(
const UClass* ObjectClass, |
UObject/UObjectHash.h |
StaticFindFirstObjectFastInternal(const UClass *, FName, EFindObjectFlags, EObjectFlags, EInternalObjectFlags)
Description
Private internal version of StaticFindFirstObject that allows using 0 exclusion flags.
| Name | StaticFindFirstObjectFastInternal |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/UObjectHash.h |
| Include Path | #include "UObject/UObjectHash.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/UObjectHash.cpp |
UObject * StaticFindFirstObjectFastInternal
(
const UClass * ObjectClass,
FName ObjectName,
EFindObjectFlags Flags,
EObjectFlags ExcludeFlag,
EInternalObjectFlags ExclusiveInternalFlags
)
Returns first object with the specified name and class, null if not found
Parameters
| Name | Remarks |
|---|---|
| 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 |
| ExcludeFlag | Ignores objects that contain any of the specified exclusive flags |
| ExclusiveInternalFlags | Ignores objects that contain any of the specified internal exclusive flags |
StaticFindFirstObjectFastInternal(const UClass *, FName, ExactClassType, EObjectFlags, EInternalObjectFlags)
| Name | StaticFindFirstObjectFastInternal |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/UObjectHash.h |
| Include Path | #include "UObject/UObjectHash.h" |
template<UE::CSameAs< bool > ExactClassType>
UObject * StaticFindFirstObjectFastInternal
(
const UClass * ObjectClass,
FName ObjectName,
ExactClassType bExactClass,
EObjectFlags ExcludeFlag,
EInternalObjectFlags ExclusiveInternalFlags
)