6614 shaares
42 private links
42 private links
2 results
tagged
unity
var names = Input.GetJoystickNames();
foreach (KeyCode kcode in Enum.GetValues(typeof(KeyCode)))
{
if (Input.GetKeyDown(kcode))
Debug.Log("KeyCode down: " + kcode);
}