This commit is contained in:
2026-06-04 17:10:40 +08:00
parent 8f482df1d5
commit 671ca265ed
30 changed files with 323 additions and 58 deletions
@@ -8,6 +8,7 @@ namespace FGUI.JLoading
{
public static void BindAll()
{
UIObjectFactory.SetPackageItemExtension(com_login_a.URL, typeof(com_login_a));
UIObjectFactory.SetPackageItemExtension(btn_box.URL, typeof(btn_box));
UIObjectFactory.SetPackageItemExtension(com_loading.URL, typeof(com_loading));
}
@@ -0,0 +1,27 @@
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
using FairyGUI;
using FairyGUI.Utils;
namespace FGUI.JLoading
{
public partial class com_login_a : GComponent
{
public GTextField text_uid;
public Transition t0;
public const string URL = "ui://pc0wa25bdz5j6";
public static com_login_a CreateInstance()
{
return (com_login_a)UIPackage.CreateObject("JLoading", "com_login_a");
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
text_uid = (GTextField)GetChildAt(2);
t0 = GetTransitionAt(0);
}
}
}
@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 126e8fa6c829b4042bcc9252f31f8319
guid: 2460f67faae178d4f99ce59e600b8b3b
MonoImporter:
externalObjects: {}
serializedVersion: 2
@@ -8,7 +8,6 @@ namespace FGUI.JMain
{
public static void BindAll()
{
UIObjectFactory.SetPackageItemExtension(makeup.URL, typeof(makeup));
UIObjectFactory.SetPackageItemExtension(com_pal.URL, typeof(com_pal));
UIObjectFactory.SetPackageItemExtension(item_pal.URL, typeof(item_pal));
UIObjectFactory.SetPackageItemExtension(btn_question.URL, typeof(btn_question));
@@ -15,7 +15,6 @@ namespace FGUI.JMain
public com_cardplaytext com_cardplay;
public GButton btn_ballon;
public GButton btn_set;
public makeup makeup;
public GButton btn_admin;
public btn_question btn_question;
public GButton btn_saveingpot;
@@ -42,14 +41,13 @@ namespace FGUI.JMain
com_cardplay = (com_cardplaytext)GetChildAt(8);
btn_ballon = (GButton)GetChildAt(9);
btn_set = (GButton)GetChildAt(10);
makeup = (makeup)GetChildAt(11);
btn_admin = (GButton)GetChildAt(12);
btn_question = (btn_question)GetChildAt(13);
btn_saveingpot = (GButton)GetChildAt(14);
btn_petty = (btn_petty)GetChildAt(15);
btn_play = (GButton)GetChildAt(16);
btn_wb = (GButton)GetChildAt(17);
btn_pal = (GButton)GetChildAt(18);
btn_admin = (GButton)GetChildAt(11);
btn_question = (btn_question)GetChildAt(12);
btn_saveingpot = (GButton)GetChildAt(13);
btn_petty = (btn_petty)GetChildAt(14);
btn_play = (GButton)GetChildAt(15);
btn_wb = (GButton)GetChildAt(16);
btn_pal = (GButton)GetChildAt(17);
}
}
}
@@ -1,41 +0,0 @@
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
using FairyGUI;
using FairyGUI.Utils;
namespace FGUI.JMain
{
public partial class makeup : GComponent
{
public GTextField gold_text;
public GTextField cash_text;
public GButton btn_cash;
public GButton btn_goldout;
public GProgressBar gold_progress;
public GProgressBar cash_progress;
public GTextField gold_progress_text;
public GTextField cash_progress_text;
public GTextField coin_cash;
public const string URL = "ui://qw9x6rf3112epi7";
public static makeup CreateInstance()
{
return (makeup)UIPackage.CreateObject("JMain", "makeup");
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
gold_text = (GTextField)GetChildAt(2);
cash_text = (GTextField)GetChildAt(5);
btn_cash = (GButton)GetChildAt(6);
btn_goldout = (GButton)GetChildAt(7);
gold_progress = (GProgressBar)GetChildAt(8);
cash_progress = (GProgressBar)GetChildAt(9);
gold_progress_text = (GTextField)GetChildAt(10);
cash_progress_text = (GTextField)GetChildAt(11);
coin_cash = (GTextField)GetChildAt(13);
}
}
}