Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FDeferredInitializationTrackerBa-
Description
Makes a copy of the specified initializer and stores it (mapped under its dependency), so that it can instead be executed later via ResolveArchetypeInstances().
@raturn A copy of the specified initializer. This should always succeed (only returns null if InitDependency is null).
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Blueprint/BlueprintSupport.h |
| Include Path | #include "Blueprint/BlueprintSupport.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/Blueprint/BlueprintSupport.cpp |
FObjectInitializer * Add
(
const UObject * InitDependency,
const FObjectInitializer & DeferringInitializer
)
Parameters
| Name | Remarks |
|---|---|
| InitDependency | The object (usually the initializer's archetype) that this initializer is dependent on. The key you'll pass to ResolveArchetypeInstances() later to run this initializer. |
| DeferringInitializer | The initializer you want to defer. |