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

TouchScreenKeyboard.active

提交更改建议

成功!

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

关闭

提交失败

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

关闭

取消

public bool active;

描述

键盘是否可见或正在屏幕上滑动到位?

使用此属性将先前隐藏的键盘重新显示在屏幕上。

using UnityEngine;

public class Example : MonoBehaviour { // Hides the keyboard if the device is facing down // and resumes input if the device is facing up.

TouchScreenKeyboard keyboard;

void Update() { if (keyboard != null) { if (Input.deviceOrientation == DeviceOrientation.FaceDown) keyboard.active = false; if (Input.deviceOrientation == DeviceOrientation.FaceUp) keyboard.active = true; } }

void OnGUI() { if (GUI.Button(new Rect(0, 10, 200, 32), "Open keyboard")) keyboard = TouchScreenKeyboard.Open("text"); } }