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

SystemLanguage.Spanish

提出更改建议

成功!

感谢您帮助我们提高 Unity 文档质量。尽管我们无法接受所有提交,但我们确实会阅读用户提出的每一条建议并会针对适用的建议进行更新。

关闭

提交失败

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

关闭

取消

说明

西班牙语。

using UnityEngine;

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