Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FOverridableSerializationLogic
Description
Method to determine whether the object should use its own instancing object graph e.g. during import.
| Name | ShouldUseDedicatedInstancingGraphForNewObject |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/OverriddenPropertySet.h |
| Include Path | #include "UObject/OverriddenPropertySet.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/OverriddenPropertySet.cpp |
static bool ShouldUseDedicatedInstancingGraphForNewObject
(
TNotNull< const UClass * > Class,
EObjectFlags Flags,
const UObject * Template,
bool bUsesOverrides
)
True if a dedicated instancing object graph should be used when creating and loading the object. Otherwise, false.
Parameters
| Name | Remarks |
|---|---|
| Class | The class that will be used to create the new object. |
| Flags | The flags that will be used to create the new object. |
| Template | The template that will be used to create the new object. |
| bUsesOverrides | Whether the given object has or will have overrides enabled. |
See Also
- The other ShouldUseDedicatedInstancingGraph overload provides more information.