Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- navigation
- M590
- 유니티 해상도 변경
- 유니티 머지
- 몬스터
- githubdesktopmerge
- networkbehaviourid
- unity git
- stateauthority
- unity 병합
- m585 수리
- NavMesh
- Unity
- unity merge
- 유니티 해상도
- 유니티
- m590 수리
- 오브젝트 깜빡임
- Github DeskTop Merge
- 유니티 합치기
- nav거리
- networkobject
- 깃허브 데스크탑 합치기
- networkobject.networkid
- 유니티 해상도 설정
- 유니티 브랜치 merge
- m585
- nav오브젝트사이거리
- 깃허브 데스크탑 병합
Archives
- Today
- Total
집게사장의 꿈
[Unity] Localization Key[ID] 값 비교 본문
//해당하는 테이블의 언어를 얻어옵니다.
public string GetLocalText(string table, string key)
{
string txt = "";
//모바일일 경우 해당 모바일 키가 존재하는지 판단합니다.
if (!GameConfig.IsPc())
{
string tmp_key = key + "_Mobile";
var collection = LocalizationSettings.StringDatabase.GetTableEntry(table,key);
string entry = collection.Entry.Key;
if (entry.Equals(tmp_key))
{
txt = LocalizationSettings.StringDatabase.GetLocalizedString(table, tmp_key);
return txt;
}
}
//현재 key값에 해당하는 텍스트
txt = LocalizationSettings.StringDatabase.GetLocalizedString(table, key);
return txt;
}
'유니티' 카테고리의 다른 글
유니티 알쓸유잡 (0) | 2024.06.13 |
---|---|
[Unity] GPU 병목 해결 버텍스 줄이기 (0) | 2024.03.14 |
[Unity] AGP 호환성 문제 (We recommend using a newer Android Gradle plugin to use compileSdk = 3x) (0) | 2024.03.08 |
[Unity]no valid user created or default window layout found unity (0) | 2024.03.08 |
[Unity] 모바일 기기를 위한 이미지 포맷 (0) | 2024.03.06 |