前言
遇到一个不需要鼠标的项目,可以使用以下方法直接触发UI按钮事件
源码
按下Q
可以触发UI下对应位置的按钮事件
Tip:需要挂载在具有
GraphicRaycaster
组件的Canvas
上
public class TestClickCanvas: MonoBehaviour
{
GraphicRaycaster raycaster;
void Start()
{
raycaster = GetComponent<GraphicRaycaster> ();
}
private void Update()
{
if (Input.GetKeyDown(KeyCode.Q))
{
PointerEventData pointerData = new PointerEventData(EventSystem.current);
List<RaycastResult> results = new List<RaycastResult>();
//想要点击的位置
pointerData.position = new Vector2(0,1080);
raycaster.Raycast(pointerData, results);
foreach (RaycastResult result in results)
{
Debug.Log("Hit " + result.gameObject.name);
if (result.gameObject.GetComponent<Button>()!=null)
{
//触发事件
result.gameObject.GetComponent<Button>().onClick.Invoke();
}
}
}
}
}
感谢
检测画布上的点击https://answers.unity.com/questions/1526663/detect-click-on-canvas.html