Skip to content

Instantly share code, notes, and snippets.

@GrimReio
GrimReio / gist:7562508
Created November 20, 2013 12:39
Test script to show system language
using UnityEngine;
using System.Collections;
public class ShowSystemLanguage : MonoBehaviour {
void OnGUI() {
GUI.Label(new Rect(10, 10, 200, 20), "system language:"+Application.systemLanguage);
}
}