CustomSerializationFlags

Namespace: UAssetAPI

public enum CustomSerializationFlags

Inheritance ObjectValueTypeEnumCustomSerializationFlags
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Attributes FlagsAttribute

Fields

NameValueDescription
None0No flags.
NoDummies1Serialize all dummy FNames to the name map.
SkipParsingBytecode2Skip Kismet bytecode serialization.
SkipPreloadDependencyLoading4Skip 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.
SkipParsingExports8Skip 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.
SkipLoadingExports16Skip 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.