Version: 2022.2
LanguageEnglish
  • C#

TextureMipmapLimitSettings.limitBias

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

public int limitBias;

Description

The new value to apply on top of the global texture mipmap limit. Can act as an offset (default) or an override to it.

By default, this is equal to 0.

If limitBiasMode is set to TextureMipmapLimitBiasMode.OffsetGlobalLimit, limitBias acts as an offset to the current quality level's QualitySettings.globalTextureMipmapLimit. For example, if the global texture mipmap limit is 1 (half size) and limitBias is also 1, the final combined value for textures that are affected by these settings is 2. (quarter size)

If limitBiasMode is set to TextureMipmapLimitBiasMode.OverrideGlobalLimit, limitBias ignores the global texture mipmap limit and acts as an override. For example, if QualitySettings.globalTextureMipmapLimit is 2 (quarter size), and limitBias is 0 (full resolution), the final combined value for textures that are affected by these settings is 0 (full resolution).

See Also: limitBiasMode, QualitySettings.globalTextureMipmapLimit.