(client) feat:UI更新 chore:LogUI性能更好,并且修复反复打开Log消失的bug,删除部分非预期的警告

This commit is contained in:
m0_75251201
2025-08-30 00:26:27 +08:00
parent 34abe845b1
commit 7252698764
58 changed files with 4849 additions and 508 deletions

View File

@ -0,0 +1,21 @@
using Base;
using UnityEngine;
namespace UI
{
public class FullScreenUI:UIBase,ITickUI
{
public FullScreenUI()
{
isInputOccupied = true;
exclusive=true;
}
public virtual void TickUI()
{
if(!IsVisible)
return;
if(Input.GetKeyDown(KeyCode.Escape))
UIInputControl.Instance.Hide(this);
}
}
}