UI_ActivityGetYuanXiaoEntryUI.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
  2. using FairyGUI;
  3. namespace UI.ActivityGetYuanXiao
  4. {
  5. public partial class UI_ActivityGetYuanXiaoEntryUI
  6. {
  7. public GComponent target;
  8. public GLoader m_loaBg;
  9. public GGraph m_bgEffect;
  10. public GGraph m_leafEffect;
  11. public GGraph m_yuanXiaoEffect;
  12. public GGraph m_doubaoEffect;
  13. public GButton m_btnTask;
  14. public GButton m_btnShop;
  15. public GGraph m_cloudEffect;
  16. public GList m_list;
  17. public GGraph m_startBtnEffect;
  18. public GGraph m_titleTextEffect;
  19. public GComponent m_valueBar;
  20. public GButton m_btnBack;
  21. public GGraph m_btnStart;
  22. public Transition m_t0;
  23. public Transition m_listShow;
  24. public const string URL = "ui://tguohf7uqkvg4";
  25. public const string PACKAGE_NAME = "ActivityGetYuanXiao";
  26. public const string RES_NAME = "ActivityGetYuanXiaoEntryUI";
  27. private static UI_ActivityGetYuanXiaoEntryUI _proxy;
  28. public static UI_ActivityGetYuanXiaoEntryUI Create(GObject gObject = null)
  29. {
  30. var ui = new UI_ActivityGetYuanXiaoEntryUI();
  31. if(gObject == null)
  32. ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
  33. else
  34. ui.target = (GComponent)gObject;
  35. ui.Init(ui.target);
  36. return ui;
  37. }
  38. public static UI_ActivityGetYuanXiaoEntryUI Proxy(GObject gObject = null)
  39. {
  40. if(_proxy == null)
  41. {
  42. _proxy = new UI_ActivityGetYuanXiaoEntryUI();
  43. }
  44. var ui = _proxy;
  45. if(gObject == null)
  46. ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
  47. else
  48. ui.target = (GComponent)gObject;
  49. ui.Init(ui.target);
  50. return ui;
  51. }
  52. public static void ProxyEnd()
  53. {
  54. if (_proxy != null)
  55. {
  56. _proxy.Dispose();
  57. }
  58. }
  59. public static void ClearProxy()
  60. {
  61. ProxyEnd();
  62. _proxy = null;
  63. }
  64. private void Init(GComponent comp)
  65. {
  66. m_loaBg = (GLoader)comp.GetChild("loaBg");
  67. m_bgEffect = (GGraph)comp.GetChild("bgEffect");
  68. m_leafEffect = (GGraph)comp.GetChild("leafEffect");
  69. m_yuanXiaoEffect = (GGraph)comp.GetChild("yuanXiaoEffect");
  70. m_doubaoEffect = (GGraph)comp.GetChild("doubaoEffect");
  71. m_btnTask = (GButton)comp.GetChild("btnTask");
  72. m_btnShop = (GButton)comp.GetChild("btnShop");
  73. m_cloudEffect = (GGraph)comp.GetChild("cloudEffect");
  74. m_list = (GList)comp.GetChild("list");
  75. m_startBtnEffect = (GGraph)comp.GetChild("startBtnEffect");
  76. m_titleTextEffect = (GGraph)comp.GetChild("titleTextEffect");
  77. m_valueBar = (GComponent)comp.GetChild("valueBar");
  78. m_btnBack = (GButton)comp.GetChild("btnBack");
  79. m_btnStart = (GGraph)comp.GetChild("btnStart");
  80. m_t0 = comp.GetTransition("t0");
  81. m_listShow = comp.GetTransition("listShow");
  82. }
  83. public void Dispose(bool disposeTarget = false)
  84. {
  85. m_loaBg = null;
  86. m_bgEffect = null;
  87. m_leafEffect = null;
  88. m_yuanXiaoEffect = null;
  89. m_doubaoEffect = null;
  90. m_btnTask = null;
  91. m_btnShop = null;
  92. m_cloudEffect = null;
  93. m_list = null;
  94. m_startBtnEffect = null;
  95. m_titleTextEffect = null;
  96. m_valueBar = null;
  97. m_btnBack = null;
  98. m_btnStart = null;
  99. m_t0 = null;
  100. m_listShow = null;
  101. if(disposeTarget && target != null)
  102. {
  103. target.RemoveFromParent();
  104. target.Dispose();
  105. }
  106. target = null;
  107. }
  108. }
  109. }