为 UI 输入字段启用移动键盘支持。
此属性确定是否为 UI 输入字段启用移动键盘支持。如果启用(默认),在选择输入字段时会请求浏览器的软键盘,并且可能对触摸按下和弹起事件产生一些开销。
using UnityEngine;
public class Example : MonoBehaviour { void Start() { #if !UNITY_EDITOR && UNITY_WEBGL // disable WebGLInput.mobileKeyboardSupport so the built-in mobile keyboard support is disabled. WebGLInput.mobileKeyboardSupport = false; #endif } }