Created
October 17, 2012 07:15
-
-
Save zulman/3904179 to your computer and use it in GitHub Desktop.
OSX input for cyrillic
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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