提交修改

This commit is contained in:
2026-03-24 23:46:11 +08:00
parent af639cdefc
commit 09540ad1a8
22 changed files with 257 additions and 266 deletions

View File

@@ -10,6 +10,7 @@ namespace NBF
public static void BindAll()
{
UIObjectFactory.SetPackageItemExtension(SelectPages.URL, typeof(SelectPages));
UIObjectFactory.SetPackageItemExtension(UIBlurBackground.URL, typeof(UIBlurBackground));
UIObjectFactory.SetPackageItemExtension(BottomMenu.URL, typeof(BottomMenu));
UIObjectFactory.SetPackageItemExtension(CommonInput.URL, typeof(CommonInput));
UIObjectFactory.SetPackageItemExtension(CommonMenuRight.URL, typeof(CommonMenuRight));

View File

@@ -32,9 +32,9 @@ namespace NBF
{
await LoginHelper.Login(InputAccount.text);
// await Fishing.Instance.Go(RoleModel.Instance.Info.MapId);
await Fishing.Instance.Go(RoleModel.Instance.Info.MapId);
TestPanel.Show();
// TestPanel.Show();
// ChatTestPanel.Show();

View File

@@ -11,13 +11,13 @@ namespace NBF
{
public const string URL = "ui://6hgkvlau8hy8la";
public GImage back;
public GImage Img;
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
back = (GImage)GetChild("back");
Img = (GImage)GetChild("Img");
OnInited();
UILanguage.TrySetComponentLanguage(this);
}