Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Misc > API/Runtime/Core/Misc/FCoreDelegates
References
Module | Core |
Header | /Engine/Source/Runtime/Core/Public/Misc/CoreDelegates.h |
Include | #include "Misc/CoreDelegates.h" |
Syntax
struct FExtraBinaryConfigData
Remarks
Callback to let code read or write specialized binary data that is generated at Stage time, for optimizing data right before final game data is being written to disk The TMap is a map of an identifier for owner of the data, and a boolean where true means the data is being generated (ie editor), and false means the data is for use (ie runtime game)
Variables
Type | Name | Description | |
---|---|---|---|
![]() |
bool | bIsGenerating | If true, the callback should fill out Data/Config |
![]() |
FConfigCacheIni & | Config | Ini config data (not necessarily GConfig) |
![]() |
TMap< FString, TArray< uint8 > > | Data | The data that will be saved/loaded quickly |
Constructors
Type | Name | Description | |
---|---|---|---|
![]() |
FExtraBinaryConfigData
(
FConfigCacheIni& InConfig, |