Version: 2019.2
public bool control ;

Description

Удерживается ли клавиша Control? (Read Only)

Возвращает значение true, если удерживается любая клавиша Control.

using UnityEngine;

public class Example : MonoBehaviour { void OnGUI() { Event e = Event.current; if (e.control) { Debug.Log("Control was pressed."); } } }