keyboard input unity code example
Example 1: unity key detection
if (Input.GetKeyDown(KeyCode.Space))
{
print("space key was pressed");
}
Example 2: get key unity
if(Input.GetKey(KeyCode.Space))
{
//do somthing
}
Example 3: unity docs player input
using UnityEngine;
using System.Collections;public class ExampleClass : MonoBehaviour
{
public void Update()
{
if (Input.GetButtonDown("Fire1"))
{
Debug.Log(Input.mousePosition);
}
}
}
Example 4: how to get keyboard input in unity
//https://docs.unity3d.com/ScriptReference/KeyCode.html - ALL KEYCODES