版本:Unity 6 (6000.0)
语言中文(中国大陆)
  • C#

SystemLanguage.ChineseSimplified

建议更改

成功!

感谢帮助我们提升 Unity 文档质量。虽然我们不能接受所有提交,但我们阅读来自所有用户的建议,并将在适当情况下进行更新。

关闭

提交失败

出于某种原因,您建议的更改无法提交。请在几分钟后<a>重试</a>。感谢您花时间帮助我们提升 Unity 文档质量。

关闭

取消

描述

ChineseSimplified。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { //This checks if your computer's operating system is in the Simplified Chinese language if (Application.systemLanguage == SystemLanguage.ChineseSimplified) { //Outputs into console that the system is in Simplified Chinese Debug.Log("This system is in Simplified Chinese. "); } } }