unity 写一段按下按键,文本显示输入字段的代码
时间: 2023-03-26 16:01:00 浏览: 100
您好,以下是您所需的代码:
void Update()
{
if (Input.GetKeyDown(KeyCode.Space))
{
Debug.Log("按下了空格键");
textField.text += " ";
}
else if (Input.anyKeyDown)
{
string input = Input.inputString;
Debug.Log("按下了:" + input);
textField.text += input;
}
}
其中,textField 是您想要显示输入文本的字段。
阅读全文