Descripción

Tecla de shift izquierdo.

using UnityEngine;

public class Example : MonoBehaviour { void Update() { if (Input.GetKeyDown(KeyCode.LeftShift)) { Debug.Log("Left Shift key was pressed"); }

if (Input.GetKeyUp(KeyCode.LeftShift)) { Debug.Log("Left Shift key was released"); }

if (Input.GetKey(KeyCode.LeftShift)) { Debug.Log("Left Shift key is being pressed"); } } }