Skip to content
Techbot

유니티 시스템 언어 가져오기

유니티, 시스템언어, 유니티강좌, 유니티블로그강좌1 min read

Application.systemLanguage 유니티 시스템 언어 가져오기

기기의 언어 정보를 가져옵니다. 이 설정을 이용해서 현지화를 할 수 있습니다.

사용방법

1using UnityEngine;
2
3public class Example : MonoBehaviour
4{
5 void Start()
6 {
7 if (Application.systemLanguage == SystemLanguage.Korean)
8 {
9 Debug.Log("안녕하세요");
10 }
11 else if (Application.systemLanguage == SystemLanguage.English)
12 {
13 Debug.Log("Hello");
14 }
15 }
16}

모든 언어가 지원되지는 않으니 아래 지원 언어를 확인해야 합니다.

1namespace UnityEngine
2{
3 //
4 // 요약:
5 // The language the user's operating system is running in. Returned by Application.systemLanguage.
6 public enum SystemLanguage
7 {
8 //
9 // 요약:
10 // Afrikaans.
11 Afrikaans = 0,
12 //
13 // 요약:
14 // Arabic.
15 Arabic = 1,
16 //
17 // 요약:
18 // Basque.
19 Basque = 2,
20 //
21 // 요약:
22 // Belarusian.
23 Belarusian = 3,
24 //
25 // 요약:
26 // Bulgarian.
27 Bulgarian = 4,
28 //
29 // 요약:
30 // Catalan.
31 Catalan = 5,
32 //
33 // 요약:
34 // Chinese.
35 Chinese = 6,
36 //
37 // 요약:
38 // Czech.
39 Czech = 7,
40 //
41 // 요약:
42 // Danish.
43 Danish = 8,
44 //
45 // 요약:
46 // Dutch.
47 Dutch = 9,
48 //
49 // 요약:
50 // English.
51 English = 10,
52 //
53 // 요약:
54 // Estonian.
55 Estonian = 11,
56 //
57 // 요약:
58 // Faroese.
59 Faroese = 12,
60 //
61 // 요약:
62 // Finnish.
63 Finnish = 13,
64 //
65 // 요약:
66 // French.
67 French = 14,
68 //
69 // 요약:
70 // German.
71 German = 15,
72 //
73 // 요약:
74 // Greek.
75 Greek = 16,
76 //
77 // 요약:
78 // Hebrew.
79 Hebrew = 17,
80 Hugarian = 18,
81 //
82 // 요약:
83 // Hungarian.
84 Hungarian = 18,
85 //
86 // 요약:
87 // Icelandic.
88 Icelandic = 19,
89 //
90 // 요약:
91 // Indonesian.
92 Indonesian = 20,
93 //
94 // 요약:
95 // Italian.
96 Italian = 21,
97 //
98 // 요약:
99 // Japanese.
100 Japanese = 22,
101 //
102 // 요약:
103 // Korean.
104 Korean = 23,
105 //
106 // 요약:
107 // Latvian.
108 Latvian = 24,
109 //
110 // 요약:
111 // Lithuanian.
112 Lithuanian = 25,
113 //
114 // 요약:
115 // Norwegian.
116 Norwegian = 26,
117 //
118 // 요약:
119 // Polish.
120 Polish = 27,
121 //
122 // 요약:
123 // Portuguese.
124 Portuguese = 28,
125 //
126 // 요약:
127 // Romanian.
128 Romanian = 29,
129 //
130 // 요약:
131 // Russian.
132 Russian = 30,
133 //
134 // 요약:
135 // Serbo-Croatian.
136 SerboCroatian = 31,
137 //
138 // 요약:
139 // Slovak.
140 Slovak = 32,
141 //
142 // 요약:
143 // Slovenian.
144 Slovenian = 33,
145 //
146 // 요약:
147 // Spanish.
148 Spanish = 34,
149 //
150 // 요약:
151 // Swedish.
152 Swedish = 35,
153 //
154 // 요약:
155 // Thai.
156 Thai = 36,
157 //
158 // 요약:
159 // Turkish.
160 Turkish = 37,
161 //
162 // 요약:
163 // Ukrainian.
164 Ukrainian = 38,
165 //
166 // 요약:
167 // Vietnamese.
168 Vietnamese = 39,
169 //
170 // 요약:
171 // ChineseSimplified.
172 ChineseSimplified = 40,
173 //
174 // 요약:
175 // ChineseTraditional.
176 ChineseTraditional = 41,
177 //
178 // 요약:
179 // Unknown.
180 Unknown = 42
181 }
182}