处理完 MouseUp 事件后,我想禁用此循环的 if。有没有办法编辑这个只读变量,或者在触发后禁用它?
if (Input.GetMouseButtonUp(0)){
Debug.Log("a");
// What I am looking for
Input.MouseButtonUp = false;
}
if (Input.GetMouseButtonUp(0)){
// This should then no longer trace
Debug.Log("b");
}
我知道在这种情况下我可以使用 if/else 开关。我的问题是这些函数在不同的类中。