CustomSerializationFlags
Namespace: UAssetAPI
public enum CustomSerializationFlags
Inheritance Object → ValueType → Enum → CustomSerializationFlags
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
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. |