Quality Settings In 1 Minute | Unity Tutorial

Published: 13 July 2021
on channel: Tegridy Made Games
5,848
70

//SET QUALITY LEVEL SCRIPT RIGHT HERE!!
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class SetQualityLevel : MonoBehaviour
{
public void LowQ()
{
QualitySettings.SetQualityLevel(0, true); //Fastest Quality
}
public void MedQ()
{
QualitySettings.SetQualityLevel(2, true); //Simple Graphics
}
public void HighQ()
{
QualitySettings.SetQualityLevel(5, true); //Fantastic Graphics
}


void NotHappening()
{
//use these for later if you want

QualitySettings.SetQualityLevel(1, true); //Fast Quality

QualitySettings.SetQualityLevel(3, true); //Good Graphics

QualitySettings.SetQualityLevel(4, true); //Beautiful Graphics

}

}


Watch video Quality Settings In 1 Minute | Unity Tutorial online without registration, duration hours minute second in high quality. This video was added by user Tegridy Made Games 13 July 2021, don't forget to share it with your friends and acquaintances, it has been viewed on our site 5,848 once and liked it 70 people.