Version: 2017.3
public bool numeric ;

説明

数字キーが押されているかどうか(読み取り専用)

メインキーと数字キーを識別するのにこのフラグを使用します。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnGUI() { Event e = Event.current; if (e.numeric) GUI.Label(new Rect(10, 10, 150, 20), "Numeric Key pad is on"); else GUI.Label(new Rect(10, 10, 150, 20), "Numeric Key pad is off"); } }