Version: 2020.3
LanguageEnglish
  • C#

PlayerSettings.mipStripping

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

Switch to Manual
public static bool mipStripping;

Description

Enable mip stripping for all platforms.

When enabled, strips unused mipmaps at build time.

When Unity builds your game or application, it can strip unused mipmaps from Textures in your Project. Stripping unused mipmaps can make the resulting executable smaller.

When Mip Stripping is enabled, Unity examines the Quality Settings for the current platform at build time. If a mipmap value is excluded from every Quality Setting for the current platform, Unity strips those mipmaps from the build.

At run time, if you use QualitySettings.masterTextureLimit to set a mipmap value that has been stripped, Unity will set the value to the closest mipmap value that has not been stripped.