Navigation
API > API/Runtime > API/Runtime/CoreUObject
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void ForEachObjectWithOuter
(
const UObjectBase* Outer, |
Performs an operation on all objects with a given outer Note that the operation must not modify UObject hash maps so it can not create, rename or destroy UObjects. | UObject/UObjectHash.h | |
void ForEachObjectWithOuter
(
const UObjectBase* Outer, |
UObject/UObjectHash.h |
ForEachObjectWithOuter(const class UObjectBase , TFunctionRef< void(UObject )>, EGetObjectsFlags, EObjectFlags, EInternalObjectFlags)
Description
Performs an operation on all objects with a given outer Note that the operation must not modify UObject hash maps so it can not create, rename or destroy UObjects.
| Name | ForEachObjectWithOuter |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/UObjectHash.h |
| Include Path | #include "UObject/UObjectHash.h" |
void ForEachObjectWithOuter
(
const class UObjectBase * Outer,
TFunctionRef < void *)> Operation,
EGetObjectsFlags Flags,
EObjectFlags ExclusionFlags,
EInternalObjectFlags ExclusionInternalFlags
)
Parameters
| Name | Remarks |
|---|---|
| Outer | Outer to search for |
| Operation | Function to be called for each object |
| Flags | Additional flags, see EGetObjectsFlags |
| ExclusionFlags | Specifies flags to use as a filter for which objects to return |
| ExclusiveInternalFlags | Specifies internal flags to use as a filter for which objects to return |
ForEachObjectWithOuter(const class UObjectBase , TFunctionRef< void(UObject )>, bool, EObjectFlags, EInternalObjectFlags)
| Name | ForEachObjectWithOuter |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/UObjectHash.h |
| Include Path | #include "UObject/UObjectHash.h" |
void ForEachObjectWithOuter
(
const class UObjectBase * Outer,
TFunctionRef < void *)> Operation,
bool bIncludeNestedObjects,
EObjectFlags ExclusionFlags,
EInternalObjectFlags ExclusionInternalFlags
)