2025-03-08 14:21:10 -05:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
2026-03-14 02:30:26 -04:00
|
|
|
using SLSUtilities.General;
|
2025-03-08 14:21:10 -05:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace Ichni.StartMenu
|
|
|
|
|
{
|
2026-03-14 02:30:26 -04:00
|
|
|
public class StartMenuManager : Singleton<StartMenuManager>
|
2025-03-08 14:21:10 -05:00
|
|
|
{
|
2026-03-14 02:30:26 -04:00
|
|
|
/// <summary>小写别名,兼容现有调用点</summary>
|
|
|
|
|
public new static StartMenuManager instance => Instance;
|
|
|
|
|
|
2025-03-08 14:21:10 -05:00
|
|
|
public StartPage startPage;
|
|
|
|
|
public CreateEmptyProjectPage createEmptyProjectPage;
|
2025-03-08 23:11:55 -05:00
|
|
|
public EditorSettingsPage editorSettingsPage;
|
2025-05-10 23:55:51 -04:00
|
|
|
|
2026-03-14 02:30:26 -04:00
|
|
|
protected override void Awake()
|
|
|
|
|
{
|
|
|
|
|
base.Awake(); // Singleton<T>.Initialize(false)
|
2025-05-10 23:55:51 -04:00
|
|
|
Application.targetFrameRate = 90;
|
2025-03-08 14:21:10 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|