| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.ActivityGetYuanXiao{    public partial class UI_ActivityGetYuanXiaoEntryUI    {        public GComponent target;        public GLoader m_loaBg;        public GGraph m_bgEffect;        public GGraph m_leafEffect;        public GGraph m_yuanXiaoEffect;        public GGraph m_doubaoEffect;        public GButton m_btnTask;        public GButton m_btnShop;        public GGraph m_cloudEffect;        public GList m_list;        public GGraph m_startBtnEffect;        public GGraph m_titleTextEffect;        public GComponent m_valueBar;        public GButton m_btnBack;        public GGraph m_btnStart;        public GTextField m_txtTime;        public Transition m_t0;        public Transition m_listShow;        public const string URL = "ui://tguohf7uqkvg4";        public const string PACKAGE_NAME = "ActivityGetYuanXiao";        public const string RES_NAME = "ActivityGetYuanXiaoEntryUI";        private static UI_ActivityGetYuanXiaoEntryUI _proxy;        public static UI_ActivityGetYuanXiaoEntryUI Create(GObject gObject = null)        {            var ui = new UI_ActivityGetYuanXiaoEntryUI();            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_ActivityGetYuanXiaoEntryUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_ActivityGetYuanXiaoEntryUI();            }            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_loaBg = (GLoader)comp.GetChild("loaBg");            m_bgEffect = (GGraph)comp.GetChild("bgEffect");            m_leafEffect = (GGraph)comp.GetChild("leafEffect");            m_yuanXiaoEffect = (GGraph)comp.GetChild("yuanXiaoEffect");            m_doubaoEffect = (GGraph)comp.GetChild("doubaoEffect");            m_btnTask = (GButton)comp.GetChild("btnTask");            m_btnShop = (GButton)comp.GetChild("btnShop");            m_cloudEffect = (GGraph)comp.GetChild("cloudEffect");            m_list = (GList)comp.GetChild("list");            m_startBtnEffect = (GGraph)comp.GetChild("startBtnEffect");            m_titleTextEffect = (GGraph)comp.GetChild("titleTextEffect");            m_valueBar = (GComponent)comp.GetChild("valueBar");            m_btnBack = (GButton)comp.GetChild("btnBack");            m_btnStart = (GGraph)comp.GetChild("btnStart");            m_txtTime = (GTextField)comp.GetChild("txtTime");            m_t0 = comp.GetTransition("t0");            m_listShow = comp.GetTransition("listShow");        }        public void Dispose(bool disposeTarget = false)        {            m_loaBg = null;            m_bgEffect = null;            m_leafEffect = null;            m_yuanXiaoEffect = null;            m_doubaoEffect = null;            m_btnTask = null;            m_btnShop = null;            m_cloudEffect = null;            m_list = null;            m_startBtnEffect = null;            m_titleTextEffect = null;            m_valueBar = null;            m_btnBack = null;            m_btnStart = null;            m_txtTime = null;            m_t0 = null;            m_listShow = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |