123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
- using FairyGUI;
- namespace UI.Main
- {
- public partial class UI_ComSkillShow
- {
- public GComponent target;
- public GGraph m_holderBottom;
- public UI_ComSkillCard m_comSkillCard;
- public UI_ComSkillScore m_ComSkillScore;
- public GTextField m_txtName;
- public GGraph m_holderTop;
- public GGraph m_addScore;
- public GGraph m_reduceScore;
- public GTextField m_SkillScore;
- public Transition m_t0;
- public Transition m_t1;
- public const string URL = "ui://mfvz4q8kpsphiy";
- public const string PACKAGE_NAME = "Main";
- public const string RES_NAME = "ComSkillShow";
- private static UI_ComSkillShow _proxy;
- public static UI_ComSkillShow Create(GObject gObject = null)
- {
- var ui = new UI_ComSkillShow();
- if(gObject == null)
- ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
- else
- ui.target = (GComponent)gObject;
- ui.Init(ui.target);
- return ui;
- }
- public static UI_ComSkillShow Proxy(GObject gObject = null)
- {
- if(_proxy == null)
- {
- _proxy = new UI_ComSkillShow();
- }
- var ui = _proxy;
- if(gObject == null)
- ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
- else
- ui.target = (GComponent)gObject;
- ui.Init(ui.target);
- return ui;
- }
- public static void ProxyEnd()
- {
- if (_proxy != null)
- {
- _proxy.Dispose();
- }
- }
- public static void ClearProxy()
- {
- ProxyEnd();
- _proxy = null;
- }
- private void Init(GComponent comp)
- {
- m_holderBottom = (GGraph)comp.GetChild("holderBottom");
- m_comSkillCard = (UI_ComSkillCard)UI_ComSkillCard.Create(comp.GetChild("comSkillCard"));
- m_ComSkillScore = (UI_ComSkillScore)UI_ComSkillScore.Create(comp.GetChild("ComSkillScore"));
- m_txtName = (GTextField)comp.GetChild("txtName");
- m_holderTop = (GGraph)comp.GetChild("holderTop");
- m_addScore = (GGraph)comp.GetChild("addScore");
- m_reduceScore = (GGraph)comp.GetChild("reduceScore");
- m_SkillScore = (GTextField)comp.GetChild("SkillScore");
- m_t0 = comp.GetTransition("t0");
- m_t1 = comp.GetTransition("t1");
- }
- public void Dispose(bool disposeTarget = false)
- {
- m_holderBottom = null;
- m_comSkillCard.Dispose();
- m_comSkillCard = null;
- m_ComSkillScore.Dispose();
- m_ComSkillScore = null;
- m_txtName = null;
- m_holderTop = null;
- m_addScore = null;
- m_reduceScore = null;
- m_SkillScore = null;
- m_t0 = null;
- m_t1 = null;
- if(disposeTarget && target != null)
- {
- target.RemoveFromParent();
- target.Dispose();
- }
- target = null;
- }
- }
- }
|