按键绑定功能

This commit is contained in:
bob
2025-06-19 18:15:15 +08:00
parent 240a6d3887
commit 8a8821c2e6
72 changed files with 1196 additions and 401 deletions

View File

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