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

CursorLockMode.Confined

提出更改建议

成功提交!

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

关闭

提交失败

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

关闭

取消

说明

将光标限制在游戏窗口内。

请注意,仅支持 Windows 和 Linux 平台上的独立播放器平台上的受限光标锁定模式。MacOS 或 Android 不支持受限光标锁定模式。

//This script makes Buttons that control the Cursor's lock state. Note that the Confined mode only works on Windows and Linux Standalone platform build.

using UnityEngine;

public class Example : MonoBehaviour { void Update() { //Press the space bar to apply no locking to the Cursor if (Input.GetKey(KeyCode.Space)) Cursor.lockState = CursorLockMode.None; }

void OnGUI() { //Press this button to lock the Cursor if (GUI.Button(new Rect(0, 0, 100, 50), "Lock Cursor")) { Cursor.lockState = CursorLockMode.Locked; }

//Press this button to confine the Cursor within the screen if (GUI.Button(new Rect(125, 0, 100, 50), "Confine Cursor")) { Cursor.lockState = CursorLockMode.Confined; } } }