LeftShift
Left shift key.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Field
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
LeftShift = 304
Examples
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"); } }}