输入的等价.GetMouseButton(0)在触摸
本文关键字:触摸 GetMouseButton 输入 | 更新日期: 2023-09-27 17:54:53
Input.GetTouch(0).phase == TouchPhase.Began
等于Input.GetMouseButtonDown (0)
Input.GetTouch(0).phase == TouchPhase.Ended
等于Input.GetMouseButtonUp (0)
与Input.GetMouseButton (0)
等价的是什么?
Input.touchCount > 0
但仍然取决于你真正想要什么。也许对你更好:
Input.touchCount == 1