Version: 2022.3
언어: 한국어

QualitySettings.activeQualityLevelChanged

매뉴얼로 전환

파라미터

value If the current Quality level is being changed this callback will be raised.

설명

Delegate that you can use to invoke custom code when Unity changes the current Quality Level.

Parameters are the previous Quality Level and the new Quality Level.

using UnityEngine;

public class ExampleClass : MonoBehaviour { void Start() { QualitySettings.activeQualityLevelChanged += QualitySettings_activeQualityLevelChanged; }

private void QualitySettings_activeQualityLevelChanged(int previousQuality, int currentQuality) { // Put the code that you want to execute everytime the Quality used is changed Debug.Log($"Quality Level has been changed from {QualitySettings.names[previousQuality]} to {QualitySettings.names[currentQuality]}"); }

void OnDestroy() { QualitySettings.activeQualityLevelChanged -= QualitySettings_activeQualityLevelChanged; } }