Navigation
API > API/Developer > API/Developer/Horde
Bundle version number
| Name | EBundleVersion |
| Type | enum |
| Header File | /Engine/Source/Developer/Horde/Public/Storage/Bundles/Bundle.h |
| Include Path | #include "Storage/Bundles/Bundle.h" |
Syntax
enum EBundleVersion
{
Initial = 0,
ExportAliases = 1,
RemoveAliases = 2,
InPlace = 3,
ImportHashes = 4,
PacketSequence = 5,
LatestPlusOne,
Latest = (int)LatestPlusOne - 1,
LatestV1 = ImportHashes,
LatestV2 = Latest,
}
Values
| Name | Remarks |
|---|---|
| Initial | Initial version number. |
| ExportAliases | Added the BundleExport.Alias property. |
| RemoveAliases | Back out change to include aliases. |
| InPlace | Use data structures which support in-place reading and writing. |
| ImportHashes | Add import hashes to imported nodes. |
| PacketSequence | Structure bundles as a sequence of self-contained packets (uses V2 code). |
| LatestPlusOne | Last item in the enum. Used for Latest. |
| Latest | The current version number. |
| LatestV1 | Last version using the V1 pipeline. |
| LatestV2 | Last version using the V2 pipeline. |