using UnityEngine;
using System.Collections;
public class SystemLanguageTest : MonoBehaviour {
void OnGUI()
{
GUI.color = Color.green;
//系统语言检测
GUI.Label(new Rect(20, 20, 500, 200), Application.systemLanguage.ToString());
}
}