| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.MiniGame{    public partial class UI_TZFEGameView    {        public GComponent target;        public GLoader m_bg;        public GList m_numList;        public GLoader m_backBtn;        public GTextField m_score;        public GGraph m_effectTitle;        public GImage m_title;        public GLoader m_star3;        public GLoader m_star2;        public GLoader m_star1;        public GLoader m_target;        public GTextField m_time;        public GTextField m_timeNum;        public GLoader m_mergeBtn;        public const string URL = "ui://wgkh30qjjmg19";        public const string PACKAGE_NAME = "MiniGame";        public const string RES_NAME = "TZFEGameView";        private static UI_TZFEGameView _proxy;        public static UI_TZFEGameView Create(GObject gObject = null)        {            var ui = new UI_TZFEGameView();            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_TZFEGameView Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_TZFEGameView();            }            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_bg = (GLoader)comp.GetChild("bg");            m_numList = (GList)comp.GetChild("numList");            m_backBtn = (GLoader)comp.GetChild("backBtn");            m_score = (GTextField)comp.GetChild("score");            m_effectTitle = (GGraph)comp.GetChild("effectTitle");            m_title = (GImage)comp.GetChild("title");            m_star3 = (GLoader)comp.GetChild("star3");            m_star2 = (GLoader)comp.GetChild("star2");            m_star1 = (GLoader)comp.GetChild("star1");            m_target = (GLoader)comp.GetChild("target");            m_time = (GTextField)comp.GetChild("time");            m_timeNum = (GTextField)comp.GetChild("timeNum");            m_mergeBtn = (GLoader)comp.GetChild("mergeBtn");        }        public void Dispose(bool disposeTarget = false)        {            m_bg = null;            m_numList = null;            m_backBtn = null;            m_score = null;            m_effectTitle = null;            m_title = null;            m_star3 = null;            m_star2 = null;            m_star1 = null;            m_target = null;            m_time = null;            m_timeNum = null;            m_mergeBtn = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |