123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
- using FairyGUI;
- namespace UI.LuckyBox
- {
- public partial class UI_LuckBoxBonusShowUI
- {
- public GComponent target;
- public Controller m_c1;
- public GLoader m_loaBg;
- public GGraph m_holder_star;
- public GGraph m_holder_bg;
- public GGraph m_holder_cloud;
- public UI_LuckyBoxBonusShowItem m_itemOne;
- public UI_LuckyBoxBonusShowItem m_item0;
- public UI_LuckyBoxBonusShowItem m_item1;
- public UI_LuckyBoxBonusShowItem m_item2;
- public UI_LuckyBoxBonusShowItem m_item3;
- public UI_LuckyBoxBonusShowItem m_item4;
- public UI_LuckyBoxBonusShowItem m_item5;
- public UI_LuckyBoxBonusShowItem m_item6;
- public UI_LuckyBoxBonusShowItem m_item7;
- public UI_LuckyBoxBonusShowItem m_item8;
- public UI_LuckyBoxBonusShowItem m_item9;
- public GButton m_BtnPass;
- public GGraph m_touchFlipOpen;
- public Transition m_t0;
- public Transition m_t1;
- public const string URL = "ui://drx9d1use050tf3";
- public const string PACKAGE_NAME = "LuckyBox";
- public const string RES_NAME = "LuckBoxBonusShowUI";
- private static UI_LuckBoxBonusShowUI _proxy;
- public static UI_LuckBoxBonusShowUI Create(GObject gObject = null)
- {
- var ui = new UI_LuckBoxBonusShowUI();
- 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_LuckBoxBonusShowUI Proxy(GObject gObject = null)
- {
- if(_proxy == null)
- {
- _proxy = new UI_LuckBoxBonusShowUI();
- }
- 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_c1 = comp.GetController("c1");
- m_loaBg = (GLoader)comp.GetChild("loaBg");
- m_holder_star = (GGraph)comp.GetChild("holder_star");
- m_holder_bg = (GGraph)comp.GetChild("holder_bg");
- m_holder_cloud = (GGraph)comp.GetChild("holder_cloud");
- m_itemOne = (UI_LuckyBoxBonusShowItem)UI_LuckyBoxBonusShowItem.Create(comp.GetChild("itemOne"));
- m_item0 = (UI_LuckyBoxBonusShowItem)UI_LuckyBoxBonusShowItem.Create(comp.GetChild("item0"));
- m_item1 = (UI_LuckyBoxBonusShowItem)UI_LuckyBoxBonusShowItem.Create(comp.GetChild("item1"));
- m_item2 = (UI_LuckyBoxBonusShowItem)UI_LuckyBoxBonusShowItem.Create(comp.GetChild("item2"));
- m_item3 = (UI_LuckyBoxBonusShowItem)UI_LuckyBoxBonusShowItem.Create(comp.GetChild("item3"));
- m_item4 = (UI_LuckyBoxBonusShowItem)UI_LuckyBoxBonusShowItem.Create(comp.GetChild("item4"));
- m_item5 = (UI_LuckyBoxBonusShowItem)UI_LuckyBoxBonusShowItem.Create(comp.GetChild("item5"));
- m_item6 = (UI_LuckyBoxBonusShowItem)UI_LuckyBoxBonusShowItem.Create(comp.GetChild("item6"));
- m_item7 = (UI_LuckyBoxBonusShowItem)UI_LuckyBoxBonusShowItem.Create(comp.GetChild("item7"));
- m_item8 = (UI_LuckyBoxBonusShowItem)UI_LuckyBoxBonusShowItem.Create(comp.GetChild("item8"));
- m_item9 = (UI_LuckyBoxBonusShowItem)UI_LuckyBoxBonusShowItem.Create(comp.GetChild("item9"));
- m_BtnPass = (GButton)comp.GetChild("BtnPass");
- m_touchFlipOpen = (GGraph)comp.GetChild("touchFlipOpen");
- m_t0 = comp.GetTransition("t0");
- m_t1 = comp.GetTransition("t1");
- }
- public void Dispose(bool disposeTarget = false)
- {
- m_c1 = null;
- m_loaBg = null;
- m_holder_star = null;
- m_holder_bg = null;
- m_holder_cloud = null;
- m_itemOne.Dispose();
- m_itemOne = null;
- m_item0.Dispose();
- m_item0 = null;
- m_item1.Dispose();
- m_item1 = null;
- m_item2.Dispose();
- m_item2 = null;
- m_item3.Dispose();
- m_item3 = null;
- m_item4.Dispose();
- m_item4 = null;
- m_item5.Dispose();
- m_item5 = null;
- m_item6.Dispose();
- m_item6 = null;
- m_item7.Dispose();
- m_item7 = null;
- m_item8.Dispose();
- m_item8 = null;
- m_item9.Dispose();
- m_item9 = null;
- m_BtnPass = null;
- m_touchFlipOpen = null;
- m_t0 = null;
- m_t1 = null;
- if(disposeTarget && target != null)
- {
- target.RemoveFromParent();
- target.Dispose();
- }
- target = null;
- }
- }
- }
|