com.alicizax.unity.ui.exten.../Runtime/UXComponent/Hotkey/IHotkeyTrigger.cs
陈思海 526341579a 优化UIExtension扩展系统
优化UXBinding编辑器
优化UXBinding性能
优化UXBinding Bug
优化Hotkey注册器性能
优化UXNavigation导航性能
2026-04-28 20:52:06 +08:00

17 lines
354 B
C#

#if INPUTSYSTEM_SUPPORT
using AlicizaX.UI.Runtime;
using UnityEngine.InputSystem;
namespace UnityEngine.UI
{
public interface IHotkeyTrigger
{
InputActionReference HotkeyAction { get; }
EHotkeyPressType HotkeyPressType { get; }
UIHolderObjectBase HotkeyHolder { get; }
void HotkeyActionTrigger();
}
}
#endif