我如何在脚本中签入mouseUp而不是在此gameObject上?
void OnMouseUp()
仅当鼠标在gameObject上时才有效,是否还有其他功能相反?
最佳答案
Input.GetMouseButtonUp(0)是您要寻找的。
不过,您需要在每个Update
调用中检查它,这不是事件。
我如何在脚本中签入mouseUp而不是在此gameObject上?
void OnMouseUp()
最佳答案
Input.GetMouseButtonUp(0)是您要寻找的。
不过,您需要在每个Update
调用中检查它,这不是事件。