CustomSerializationFlags
Namespace: UAssetAPI
public enum CustomSerializationFlags
Inheritance Object → ValueType → Enum → CustomSerializationFlags
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Attributes FlagsAttribute
Fields
| Name | Value | Description |
|---|---|---|
| None | 0 | No flags. |
| NoDummies | 1 | Serialize all dummy FNames to the name map. |
| SkipParsingBytecode | 2 | Skip Kismet bytecode serialization. |
| SkipPreloadDependencyLoading | 4 | Skip loading other assets referenced in preload dependencies. You may wish to set this flag when possible in multi-threading applications, since preload dependency loading could lead to file handle race conditions. |
| SkipParsingExports | 8 | Skip parsing exports at read time. Entries in the export map will be read as raw exports. You can manually parse exports with the UAsset.ParseExport(AssetBinaryReader, Int32, Boolean) method. |
| SkipLoadingExports | 16 | Skip loading exports at read time altogether. Entries in the export map will be read as raw exports of zero length, so they cannot be manually parsed later. If this flag is set, SkipParsingExports will also effectively be automatically set regardless of whether or not it was already set manually. |