This commit is contained in:
2025-03-01 16:05:51 +08:00
parent b7c1885815
commit 4a7962dcde
23 changed files with 1635 additions and 202 deletions
+40
View File
@@ -0,0 +1,40 @@
using System.Collections;
using System.Collections.Generic;
using AibisDream.Kit;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
using RainbowArt.CleanFlatUI;
namespace AibisDream
{
public class EndMenu : Singleton<EndMenu>
{
// Start is called before the first frame update
[SerializeField] private GameObject EndMenuPanel;
void Start()
{
EndMenuPanel.SetActive(false);
}
public void OpenEndMenu()
{
EndMenuPanel.SetActive(true);
}
public void CloseEndMenu()
{
EndMenuPanel.SetActive(false);
}
// Update is called once per frame
void Update()
{
}
}
}