Files
ichni_Creator_Studio/Assets/Scripts/StartMenu/StartMenuManager.cs
SoulliesOfficial 002bb875a0 小优化
2025-05-10 23:55:51 -04:00

30 lines
776 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Ichni.StartMenu
{
public class StartMenuManager : MonoBehaviour
{
public static StartMenuManager instance;
public StartPage startPage;
public CreateEmptyProjectPage createEmptyProjectPage;
public EditorSettingsPage editorSettingsPage;
private void Awake()
{
if (instance == null)
{
instance = this;
DontDestroyOnLoad(gameObject);
}
else if (instance != this)
{
Destroy(gameObject);
return;
}
Application.targetFrameRate = 90;
}
}
}