diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/UI/DragonCrusadeBehavior.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/UI/DragonCrusadeBehavior.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/UI/DragonCrusadeBehavior.cs | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/UI/DragonCrusadeBehavior.cs b/Client/Assets/Scripts/XMainClient/UI/DragonCrusadeBehavior.cs new file mode 100644 index 00000000..10b4b3d9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/UI/DragonCrusadeBehavior.cs @@ -0,0 +1,42 @@ +using System;
+using UILib;
+using UnityEngine;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient.UI
+{
+ internal class DragonCrusadeBehavior : DlgBehaviourBase
+ {
+ public IXUIButton m_Help;
+
+ public IXUISprite slideSprite = null;
+
+ public GameObject goLoading = null;
+
+ public IXUILabel goLoadingTxt = null;
+
+ public GameObject mMyRank = null;
+
+ public IXUIButton m_closed = null;
+
+ public IXUIButton m_leftBtn = null;
+
+ public IXUIButton m_rightBtn = null;
+
+ public IXUISprite m_myRankSpr = null;
+
+ private void Awake()
+ {
+ this.m_closed = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
+ this.m_myRankSpr = (base.transform.Find("Bg/MyRank").GetComponent("XUISprite") as IXUISprite);
+ this.m_leftBtn = (base.transform.Find("Bg/Left").GetComponent("XUIButton") as IXUIButton);
+ this.m_rightBtn = (base.transform.Find("Bg/Right").GetComponent("XUIButton") as IXUIButton);
+ this.slideSprite = (base.transform.Find("Bg").GetComponent("XUISprite") as IXUISprite);
+ this.mMyRank = base.transform.Find("Bg/MyRank/My").gameObject;
+ this.goLoading = base.transform.Find("Loading").gameObject;
+ this.goLoadingTxt = (base.transform.Find("Loading/Bg/Slogan").GetComponent("XUILabel") as IXUILabel);
+ this.goLoading.SetActive(false);
+ this.m_Help = (base.transform.Find("Help").GetComponent("XUIButton") as IXUIButton);
+ }
+ }
+}
|