This commit is contained in:
MuHua-123
2025-02-28 18:28:03 +08:00
parent 5bc834bfcd
commit fb849c9c25
75 changed files with 859 additions and 7 deletions
+26
View File
@@ -0,0 +1,26 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
#if ENABLE_INPUT_SYSTEM && UNITY_INPUT_SYSTEM_PACKAGE
using UnityEngine.InputSystem;
#endif
namespace MuHua
{
/// <summary>
/// UI工具
/// </summary>
public static class UITool
{
/// <summary> 获取鼠标位置 </summary>
public static Vector3 GetMousePosition()
{
#if ENABLE_INPUT_SYSTEM && UNITY_INPUT_SYSTEM_PACKAGE
return Mouse.current.position.ReadValue();
#else
return Input.mousePosition;
#endif
}
}
}