主界面添加,许多bug修复。祝贺黑盒1如期开始

This commit is contained in:
FloatGaming
2026-03-02 04:34:13 +08:00
parent e11cc1da7a
commit 3c1d263ef1
308 changed files with 59216 additions and 32756 deletions
+15
View File
@@ -0,0 +1,15 @@
using UnityEngine;
using UnityEngine.UI;
[DefaultExecutionOrder(-100)]
public class UIAutoRegisterSound : MonoBehaviour
{
void Awake()
{
// Register the entire hierarchy of this prefab
UISystemBootstrap.RegisterHierarchy(gameObject);
// Remove this component as its job is done
Destroy(this);
}
}