InputField.shouldHideMobileInput

매뉴얼로 전환
public bool shouldHideMobileInput ;

설명

Should the mobile keyboard input be hidden.

using UnityEngine;
using System.Collections;
using UnityEngine.UI; // Required when Using UI elements.

public class Example : MonoBehaviour { public InputField mainInputField;

public void Start() { //This setting can be toggled in the inspector. mainInputField.shouldHideMobileInput = true; } }