- Home /
Does the quality settings remain when you move level?
So i found this script on the Unity docs:
function OnGUI ()
{
var names = QualitySettings.names;
GUILayout.BeginVertical ();
for (var i = 0; i < names.Length; i++)
{
if (GUILayout.Button (names[i]))
QualitySettings.SetQualityLevel (i, true);
}
GUILayout.EndVertical ();
}
But my question is does the quality settings remain when you move level?
Comment
Best Answer
Answer by ExTheSea · May 01, 2013 at 09:30 AM
Yes they should. The Quality Level is the same for the entire project. No matter on which level you're on.