Skip to content

Instantly share code, notes, and snippets.

@zulman
Created October 17, 2012 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zulman/3904179 to your computer and use it in GitHub Desktop.
Save zulman/3904179 to your computer and use it in GitHub Desktop.
OSX input for cyrillic
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
void OnGUI() {
Event e = Event.current;
if (e.isKey)
Debug.Log("Detected character: " + e.character);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment