Se mantiene oprimida la tecla Control? (Lectura solamente)
Devuelve true si se mantiene oprimida la tecla de Control.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void OnGUI() { Event e = Event.current; if (e.control) Debug.Log("Control was pressed."); } }