Files
BingoGrassland/Assets/BingoBrain/FGUI/Package/JBingoPlay/btn_box.cs
T
2026-04-20 13:49:36 +08:00

41 lines
1.3 KiB
C#

/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
using FairyGUI;
using FairyGUI.Utils;
namespace FGUI.JBingoPlay
{
public partial class btn_box : GButton
{
public Controller cont_box;
public Controller cont_type;
public Controller cont_first;
public Controller gift;
public GTextField text_num;
public GLoader loader_reward;
public GLoader loader_rewardnew;
public Transition fx_backtofront;
public Transition fx_fronttoback;
public const string URL = "ui://qrqjiu5sy0npfu";
public static btn_box CreateInstance()
{
return (btn_box)UIPackage.CreateObject("JBingoPlay", "btn_box");
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
cont_box = GetControllerAt(0);
cont_type = GetControllerAt(1);
cont_first = GetControllerAt(2);
gift = GetControllerAt(3);
text_num = (GTextField)GetChildAt(1);
loader_reward = (GLoader)GetChildAt(2);
loader_rewardnew = (GLoader)GetChildAt(3);
fx_backtofront = GetTransitionAt(0);
fx_fronttoback = GetTransitionAt(1);
}
}
}