版本:Unity 6 (6000.0)
语言英语
  • C#

SystemLanguage.Indonesian

建议修改

成功提交

感谢你帮助我们改进 Unity 文档的质量。尽管我们无法接受所有提交内容,但我们会阅读每一条来自用户的修改建议,并在合适的地方进行更新。

关闭

提交失败

由于某些原因,你的修改建议未能提交。请在几分钟后 重试。感谢你花时间帮助我们提高 Unity 文档的质量。

关闭

取消

描述

印尼语。

using UnityEngine;

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