Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


resolutionScalingFixedDPIFactor

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.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public static float resolutionScalingFixedDPIFactor { get; set; }

Remarks

Additional Resources: Multi-Resolution UI, Quality Settings.
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; }}
Additional Resources: Quality Settings.