版本: Unity 6 (6000.0)
语言English
  • C#

KeyCode.Return

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们会阅读用户提出的每个建议更改,并在适用时进行更新。

关闭

提交失败

由于某些原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

描述

回车键。

用于确认一行文本的键。macOS 将其称为 Return。PC 将其称为 Enter。没有 KeyCode.Enter。在 PC 上使用 Return。某些笔记本电脑的 ReturnEnter 键上没有名称。

// KeyCode.Return example.
//
// Attach this to a GameObject.
// This script tells when the Return key is pressed down and when it is released.

using UnityEngine;

public class Example : MonoBehaviour { void Update() { //Detect when the Return key is pressed down if (Input.GetKeyDown(KeyCode.Return)) { Debug.Log("Return key was pressed."); }

//Detect when the Return key has been released if (Input.GetKeyUp(KeyCode.Return)) { Debug.Log("Return key was released."); } } }