QualitySettings.DecreaseLevel Manual     Reference     Scripting  
Scripting > Runtime Classes > QualitySettings
QualitySettings.DecreaseLevel

static function DecreaseLevel (applyExpensiveChanges : boolean = false) : void

Parameters

NameDescription
applyExpensiveChanges should expensive changes be applied (Anti-aliasing etc)

Description

Decrease the current quality level.

JavaScript
QualitySettings.DecreaseLevel(false);

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
QualitySettings.DecreaseLevel(false);
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
QualitySettings.DecreaseLevel(false)

IncreaseLevel and DecreaseLevel functions only apply anti-aliasing if applyExpensiveChanges is true.

See Also: IncreaseLevel, Quality Settings.