Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/Serialization > API/Runtime/CoreUObject/Serialization/FEditorBulkData
References
| Module | CoreUObject |
| Header | /Engine/Source/Runtime/CoreUObject/Public/Serialization/EditorBulkData.h |
| Include | #include "Serialization/EditorBulkData.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/Serialization/EditorBulkData.cpp |
void Serialize
(
FArchive & Ar,
UObject * Owner,
bool bAllowRegister
)
Remarks
Used to serialize the bulkdata to/from a FArchive
Parameters
| Name | Description |
|---|---|
| Ar | The archive to serialize the bulkdata. |
| Owner | The UObject that contains the bulkdata object, if this is a nullptr then the bulkdata will assume that it must serialize the payload immediately to memory as it will not be able to identify it's package path. |
| bAllowRegistry | Legacy parameter to skip registration when loading BulkData we know we will need to modify the identifier of. Should always be true for non-legacy serialization. |