方向键控制

This commit is contained in:
bob
2025-06-04 12:12:11 +08:00
parent d76b763fbf
commit 34cff550fa
19 changed files with 340 additions and 76 deletions

View File

@@ -0,0 +1,13 @@
using FairyGUI;
namespace NBF
{
public static class FairyGUIExtensions
{
public static void Click(this GButton button)
{
button.FireClick(true);
button.onClick.Call();
}
}
}