From 1fe4ffba72f56ccc6a89d1896142425c666887d4 Mon Sep 17 00:00:00 2001 From: chai Date: Wed, 27 Jan 2021 14:15:08 +0800 Subject: =?UTF-8?q?+UILib=20=E5=8F=8D=E7=BC=96=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Client/Assets/Scripts/UILib/IXUIDlg.cs | 63 ++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 Client/Assets/Scripts/UILib/IXUIDlg.cs (limited to 'Client/Assets/Scripts/UILib/IXUIDlg.cs') diff --git a/Client/Assets/Scripts/UILib/IXUIDlg.cs b/Client/Assets/Scripts/UILib/IXUIDlg.cs new file mode 100644 index 00000000..b5e0a64b --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUIDlg.cs @@ -0,0 +1,63 @@ +using System; + +namespace UILib +{ + public interface IXUIDlg + { + IXUIBehaviour uiBehaviourInterface { get; } + + string fileName { get; } + + int layer { get; } + + int group { get; } + + bool exclusive { get; } + + bool hideMainMenu { get; } + + bool pushstack { get; } + + bool isMainUI { get; } + + bool isHideTutorial { get; } + + bool isHideChat { get; } + + int sysid { get; } + + bool fullscreenui { get; } + + bool needOnTop { get; } + + void OnUpdate(); + + void OnPostUpdate(); + + void Load(); + + void UnLoad(bool bTransfer = false); + + void SetVisiblePure(bool bVisible); + + void SetVisible(bool bVisible, bool bEnableAuto = true); + + bool IsVisible(); + + void Reset(); + + void SetDepthZ(int nDepthZ); + + bool BindReverse(IXUIBehaviour uiBehaviour); + + void SetAlpha(float a); + + void StackRefresh(); + + void LeaveStackTop(); + + void SetRelatedVisible(bool bVisible); + + int[] GetTitanBarItems(); + } +} -- cgit v1.1-26-g67d0