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/IXUILabel.cs | 50 ++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 Client/Assets/Scripts/UILib/IXUILabel.cs (limited to 'Client/Assets/Scripts/UILib/IXUILabel.cs') diff --git a/Client/Assets/Scripts/UILib/IXUILabel.cs b/Client/Assets/Scripts/UILib/IXUILabel.cs new file mode 100644 index 00000000..b1ac2ba4 --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUILabel.cs @@ -0,0 +1,50 @@ +using System; +using UnityEngine; + +namespace UILib +{ + public interface IXUILabel : IXUIObject + { + float AlphaVar { get; } + + float Alpha { get; set; } + + int spriteWidth { get; set; } + + int spriteHeight { get; } + + int spriteDepth { get; set; } + + int fontSize { get; set; } + + Color GetColor(); + + string GetText(); + + void SetText(string strText); + + void SetRootAsUIPanel(bool bFlag); + + void SetColor(Color c); + + void SetEffectColor(Color c); + + void SetGradient(bool bEnable, Color top, Color bottom); + + void ToggleGradient(bool bEnable); + + void SetEnabled(bool bEnabled); + + Vector2 GetPrintSize(); + + void SetDepthOffset(int d); + + void MakePixelPerfect(); + + void RegisterLabelClickEventHandler(LabelClickEventHandler eventHandler); + + void SetIdentity(int i); + + bool HasIdentityChanged(int i); + } +} -- cgit v1.1-26-g67d0