This commit is contained in:
2022-09-24 17:41:59 +03:00
parent e879f36b29
commit 83dc7b637d
11 changed files with 494 additions and 20 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SpawnFuncs : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
QualitySettings.SetQualityLevel(PlayerPrefs.GetInt("GraphicsLevel"));
}
}