public bool control ;

Description

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

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

using UnityEngine;
using System.Collections;

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