Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

Input.inputString

フィードバック

ありがとうございます

この度はドキュメントの品質向上のためにご意見・ご要望をお寄せいただき、誠にありがとうございます。頂いた内容をドキュメントチームで確認し、必要に応じて修正を致します。

閉じる

送信に失敗しました

なんらかのエラーが発生したため送信が出来ませんでした。しばらく経ってから<a>もう一度送信</a>してください。ドキュメントの品質向上のために時間を割いて頂き誠にありがとうございます。

閉じる

キャンセル

マニュアルに切り替える
public static var inputString: string;
public static string inputString;

説明

現フレームでキーボードで入力された文字を返します(読み取り専用)

ASCII 文字のみが inputString に含まれます。

文字列は特殊文字をハンドルする必要があります: Character "\b" represents backspace.
Character "\n" represents return or enter.

// Reading typed input from the keyboard
// (eg, the user entering their name).
// You need to attach this script to an object with
// a GUIText component.

var gt: GUIText;

function Start() { gt = GetComponent.<GUIText>(); }

function Update () { for (var c : char in Input.inputString) { // Backspace - Remove the last character if (c == "\b"[0]) { if (gt.text.Length != 0) gt.text = gt.text.Substring(0, gt.text.Length - 1); } // End of entry else if (c == "\n"[0] || c == "\r"[0]) {// "\n" for Mac, "\r" for windows. print ("User entered their name: " + gt.text); } // Normal text input - just append to the end else { gt.text += c; } } }
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public GUIText gt; void Start() { gt = GetComponent<GUIText>(); } void Update() { foreach (char c in Input.inputString) { if (c == "\b"[0]) if (gt.text.Length != 0) gt.text = gt.text.Substring(0, gt.text.Length - 1); else if (c == "\n"[0] || c == "\r"[0]) print("User entered their name: " + gt.text); else gt.text += c; } } }