|
@@ -7,9 +7,12 @@ namespace UI.RoleLvUp
|
|
|
public partial class UI_RoleLvUpUI
|
|
|
{
|
|
|
public GComponent target;
|
|
|
+ public GGroup m_downTipsText;
|
|
|
+ public GGraph m_holderTitle;
|
|
|
public GTextField m_txtLv;
|
|
|
public GTextField m_txtLastLv;
|
|
|
public GTextField m_txtCurLv;
|
|
|
+ public GGraph m_holderNumber;
|
|
|
public UI_Component1 m_com0;
|
|
|
public UI_Component2 m_com1;
|
|
|
public const string URL = "ui://ns2d6qb2mueb0";
|
|
@@ -59,17 +62,23 @@ namespace UI.RoleLvUp
|
|
|
|
|
|
private void Init(GComponent comp)
|
|
|
{
|
|
|
+ m_downTipsText = (GGroup)comp.GetChild("downTipsText");
|
|
|
+ m_holderTitle = (GGraph)comp.GetChild("holderTitle");
|
|
|
m_txtLv = (GTextField)comp.GetChild("txtLv");
|
|
|
m_txtLastLv = (GTextField)comp.GetChild("txtLastLv");
|
|
|
m_txtCurLv = (GTextField)comp.GetChild("txtCurLv");
|
|
|
+ m_holderNumber = (GGraph)comp.GetChild("holderNumber");
|
|
|
m_com0 = (UI_Component1)UI_Component1.Create(comp.GetChild("com0"));
|
|
|
m_com1 = (UI_Component2)UI_Component2.Create(comp.GetChild("com1"));
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
|
+ m_downTipsText = null;
|
|
|
+ m_holderTitle = null;
|
|
|
m_txtLv = null;
|
|
|
m_txtLastLv = null;
|
|
|
m_txtCurLv = null;
|
|
|
+ m_holderNumber = null;
|
|
|
m_com0.Dispose();
|
|
|
m_com0 = null;
|
|
|
m_com1.Dispose();
|