Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FCbPackage
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FCbPackage () |
Construct a null package. | Serialization/CompactBinaryPackage.h | |
FCbPackage
(
FCbObject InObject |
Construct a package from a root object without gathering attachments. | Serialization/CompactBinaryPackage.h | |
FCbPackage
(
FCbObject InObject, |
Construct a package from a root object and gather attachments using the resolver. | Serialization/CompactBinaryPackage.h | |
FCbPackage
(
FCbObject InObject, |
Construct a package from a root object without gathering attachments. | Serialization/CompactBinaryPackage.h | |
FCbPackage
(
FCbObject InObject, |
Construct a package from a root object and gather attachments using the resolver. | Serialization/CompactBinaryPackage.h |
FCbPackage()
Description
Construct a null package.
| Name | FCbPackage |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinaryPackage.h |
| Include Path | #include "Serialization/CompactBinaryPackage.h" |
FCbPackage()
FCbPackage(FCbObject)
Description
Construct a package from a root object without gathering attachments.
| Name | FCbPackage |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinaryPackage.h |
| Include Path | #include "Serialization/CompactBinaryPackage.h" |
FCbPackage
(
FCbObject InObject
)
Parameters
| Name | Remarks |
|---|---|
| InObject | The root object, which will be cloned unless it is owned. |
FCbPackage(FCbObject, FAttachmentResolver)
Description
Construct a package from a root object and gather attachments using the resolver.
| Name | FCbPackage |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinaryPackage.h |
| Include Path | #include "Serialization/CompactBinaryPackage.h" |
FCbPackage
(
FCbObject InObject,
FAttachmentResolver InResolver
)
Parameters
| Name | Remarks |
|---|---|
| InObject | The root object, which will be cloned unless it is owned. |
| InResolver | A function that is invoked for every reference and binary reference field. |
FCbPackage(FCbObject, const FIoHash &)
Description
Construct a package from a root object without gathering attachments.
| Name | FCbPackage |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinaryPackage.h |
| Include Path | #include "Serialization/CompactBinaryPackage.h" |
FCbPackage
(
FCbObject InObject,
const FIoHash & InObjectHash
)
Parameters
| Name | Remarks |
|---|---|
| InObject | The root object, which will be cloned unless it is owned. |
| InObjectHash | The hash of the object, which must match to avoid validation errors. |
FCbPackage(FCbObject, const FIoHash &, FAttachmentResolver)
Description
Construct a package from a root object and gather attachments using the resolver.
| Name | FCbPackage |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinaryPackage.h |
| Include Path | #include "Serialization/CompactBinaryPackage.h" |
FCbPackage
(
FCbObject InObject,
const FIoHash & InObjectHash,
FAttachmentResolver InResolver
)
Parameters
| Name | Remarks |
|---|---|
| InObject | The root object, which will be cloned unless it is owned. |
| InObjectHash | The hash of the object, which must match to avoid validation errors. |
| InResolver | A function that is invoked for every reference and binary reference field. |