Version: 2021.2
LanguageEnglish
  • C#

OverrideTextureCompression

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Sets which texture compression override to use when importing assets.

This enum is used by EditorUserBuildSettings.overrideTextureCompression. It lets you override the texture compression settings that Unity uses when it imports assets. This is mostly useful for local development, to speed up texture importing or build target switching.

This setting affects all textures in your project, and overrides the import settings for individual textures. For example, if a texture's import settings indicate that a "Normal" compressor quality should be used, but overrideTextureCompression is set to OverrideTextureCompression.ForceFastCompressor, the texture will be compressed with "Fast" compressor quality setting.

Overriding the texture compression format can increase the speed of the import process considerably, but it is important to understand the implications.

Using ForceUncompressed turns off compression completely. This is the fastest option, as it saves all the time that would be spent compressing textures during import. However, it has a potentially large effect: uncompressed textures use between 4 and 8 times more memory, the build size is larger, and code that expects textures to be in a particular format might no longer work as expected.

Using ForceFastCompressor is not as fast as uncompressed, but is up to 10 times faster than using the default compression settings under certain circumstances (most notably for mobile compression formats). It has none of the downsides of forcing uncompressed textures: memory usage stays the same, build size stays the same, and texture formats stay the same. The only downside is that textures might have more compression artifacts.

See Also: EditorUserBuildSettings.overrideTextureCompression, Texture Importer, command line arguments.

Properties

NoOverrideDo not override texture import compression parameters.
ForceUncompressedImport textures with texture compression off.
ForceFastCompressorImport textures with fast, but lower quality, texture compression.