QualitySettings.DecreaseLevelstatic function DecreaseLevel () : voidDescriptionDecrease the current quality level.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { QualitySettings.DecreaseLevel(); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): QualitySettings.DecreaseLevel() See Also: IncreaseLevel, currentLevel, Quality Settings. |
