LoginSignup
2
0

More than 5 years have passed since last update.

unityのGetKeyで指定するKeyCodeを見つける

Posted at

GetKeyなどで指定するKeyCodeが英字キーボードになっているので@や:あたりを設定するのにいつも困る。対応表くらい公式で作るべきだろー、つーか、バグだろー。

using UnityEngine;

public class NewBehaviourScript : MonoBehaviour
{
    void Update()
    {
        for (var i = 0; i < 999; ++i)
        {
            try
            {
                if (Input.GetKeyDown((KeyCode)i))
                {
                    Debug.Log(System.Enum.GetName(typeof(KeyCode), i));
                }
            }
            catch
            {
            }
        }
    }
}
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0