Version: 2021.2
言語: 日本語

説明

オランダ語

using UnityEngine;

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