Files
MuHua-UIElements/Assets/ModuleCore/ModuleInput/InputControl/InputMenu.cs
T
MuHua-123 f7fab248d4 1
2025-09-05 18:02:13 +08:00

22 lines
476 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.InputSystem;
/// <summary>
/// 菜单 - 输入
/// </summary>
public class InputMenu : InputControl {
protected override void ModuleInput_OnInputMode(InputMode mode) {
// throw new System.NotImplementedException();
}
#region
/// <summary> 鼠标右键 </summary>
public void OnMouseRight(InputValue inputValue) {
UIMenuManager.I.Open();
}
#endregion
}