我只想添加"〜"按钮到InputManager所以我可以这样启用我的开发控制台:
public string toggle = "~";
void Update ()
{
if (toggle == string.Empty)
{
return;
}
if (Input.GetButtonDown (toggle))
{
consoleObject.SetActive( !consoleObject.activeSelf );
}
}
关于如何做到这一点的任何想法?
答案 0 :(得分:1)
我相信“〜”字符与Mac电脑中的“`”共用键。我刚刚测试过它。
if (true == Input. GetButtonDown ("`"))
{
Debug.Log ("worked");
}
您所要做的就是找到所需平台的密钥代码(Windows具有与整数绑定的密钥)。
感谢。