Legacy Documentation: Version 2017.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

QualitySettings.resolutionScalingFixedDPIFactor

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 var resolutionScalingFixedDPIFactor: float;
public static float resolutionScalingFixedDPIFactor;

Description

In resolution scaling mode, this factor is used to multiply with the target Fixed DPI specified to get the actual Fixed DPI to use for this quality setting.

no example available in JavaScript
using UnityEngine;
public class StartupExampleScript : MonoBehaviour
{
    void Start()
    {
        // Set the target Fixed DPI for this quality setting to be half of the default.
        QualitySettings.resolutionScalingFixedDPIFactor = 0.5f;
    }
}

See Also: Quality Settings.

Did you find this page useful? Please give it a rating: