This commit is contained in:
2025-05-23 00:26:58 +08:00
parent 2ca8eac832
commit 4b7a6b1dc8
22 changed files with 194 additions and 22 deletions

View File

@@ -0,0 +1,27 @@
/**本脚本为自动生成每次生成会覆盖请勿手动修改生成插件文档及项目地址https://git.whoot.com/whoot-games/whoot.fguieditorplugin**/
using FairyGUI;
using FairyGUI.Utils;
using NBC;
namespace NBF
{
public partial class ShopGearItem
{
public const string URL = "ui://146ra2lqoome9";
public GGraph select;
public GGraph over;
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
select = (GGraph)GetChild("select");
over = (GGraph)GetChild("over");
OnInited();
UILanguage.TrySetComponentLanguage(this);
}
}
}