control
Is Control key held down? (Read Only)
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public bool control { get; set; }
Remarks
Returns true if any Control key is held down.
Examples
using UnityEngine;public class Example : MonoBehaviour{ void OnGUI() { Event e = Event.current; if (e.control) { Debug.Log("Control was pressed."); } }}