Fix fonts (#424)
* Fix fonts * Add more fonts & bundle update * Increase font size
This commit is contained in:
Binary file not shown.
BIN
core/assets-raw/fonts/what/OpenSansEmoji.ttf
Normal file
BIN
core/assets-raw/fonts/what/OpenSansEmoji.ttf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -73,7 +73,7 @@ server.kicked.nameEmpty = 닉네임에는 반드시 영어 또는 숫자가 있
|
|||||||
server.kicked.idInUse = 이미 서버에 접속중입니다! 다중 계정은 허용되지 않습니다.
|
server.kicked.idInUse = 이미 서버에 접속중입니다! 다중 계정은 허용되지 않습니다.
|
||||||
server.kicked.customClient = 이 서버는 직접 빌드한 버전을 지원하지 않습니다. 공식 버전을 사용하세요.
|
server.kicked.customClient = 이 서버는 직접 빌드한 버전을 지원하지 않습니다. 공식 버전을 사용하세요.
|
||||||
server.kicked.gameover = 게임 오버!
|
server.kicked.gameover = 게임 오버!
|
||||||
host.info = [accent]호스트[] 버튼은 현재 네트워크의 [scarlet]6567[] 포트를 사용합니다.\n[LIGHY_GRAY]같은 Wi-Fi 또는 로컬 네트워크[] 에서 서버 목록을 볼 수 있습니다.\n\n만약 플레이어들이 이 IP를 통해 어디에서나 연결할 수 있게 하고 싶다면, 공유기 설정에서 [accent]포트 포워딩[]을 해야 합니다.\n\n[LIGHT_GRAY]참고: LAN 게임 연결에 문제가 있는 사람이 있다면, 방화벽 설정에서 Mindustry 가 로컬 네트워크에 액세스하도록 허용했는지 확인 해 주세요.
|
host.info = [accent]호스트[] 버튼은 현재 네트워크의 [scarlet]6567[] 포트를 사용합니다.\n[LIGHT_GRAY]같은 Wi-Fi 또는 로컬 네트워크[] 에서 서버 목록을 볼 수 있습니다.\n\n만약 플레이어들이 이 IP를 통해 어디에서나 연결할 수 있게 하고 싶다면, 공유기 설정에서 [accent]포트 포워딩[]을 해야 합니다.\n\n[LIGHT_GRAY]참고: LAN 게임 연결에 문제가 있는 사람이 있다면, 방화벽 설정에서 Mindustry 가 로컬 네트워크에 액세스하도록 허용했는지 확인 해 주세요.
|
||||||
join.info = 여기서 [accent]서버 IP[]를 입력하여 다른 서버에 접속할 수 있습니다.\n또는 [accent]로컬 네트워크(LAN)[] 서버를 검색하여 접속할 수 있습니다.\nLAN 및 WAN 멀티 플레이어 모두 지원됩니다.\n\n[LIGHT_GRAY]참고:여기에서는 자동으로 글로벌 서버를 추가하지 않습니다. IP로 다른 사람의 서버에 접속할려면 서버장에게 IP를 요청해야 합니다.
|
join.info = 여기서 [accent]서버 IP[]를 입력하여 다른 서버에 접속할 수 있습니다.\n또는 [accent]로컬 네트워크(LAN)[] 서버를 검색하여 접속할 수 있습니다.\nLAN 및 WAN 멀티 플레이어 모두 지원됩니다.\n\n[LIGHT_GRAY]참고:여기에서는 자동으로 글로벌 서버를 추가하지 않습니다. IP로 다른 사람의 서버에 접속할려면 서버장에게 IP를 요청해야 합니다.
|
||||||
hostserver = 서버 열기
|
hostserver = 서버 열기
|
||||||
hostserver.mobile = 서버\n열기
|
hostserver.mobile = 서버\n열기
|
||||||
@@ -375,6 +375,7 @@ category.items = 아이템
|
|||||||
category.crafting = 제작
|
category.crafting = 제작
|
||||||
category.shooting = 사격
|
category.shooting = 사격
|
||||||
category.optional = 보조 아이템
|
category.optional = 보조 아이템
|
||||||
|
setting.animatedwater.name = 움직이는 물
|
||||||
setting.indicators.name = 인디게이터 표시
|
setting.indicators.name = 인디게이터 표시
|
||||||
setting.autotarget.name = 자동 조준
|
setting.autotarget.name = 자동 조준
|
||||||
setting.fpscap.name = 최대 FPS
|
setting.fpscap.name = 최대 FPS
|
||||||
|
|||||||
Binary file not shown.
@@ -129,7 +129,7 @@ public class UI implements ApplicationListener{
|
|||||||
void generateFonts(Skin skin){
|
void generateFonts(Skin skin){
|
||||||
generator = new FreeTypeFontGenerator(Core.files.internal("fonts/font.ttf"));
|
generator = new FreeTypeFontGenerator(Core.files.internal("fonts/font.ttf"));
|
||||||
FreeTypeFontParameter param = new FreeTypeFontParameter();
|
FreeTypeFontParameter param = new FreeTypeFontParameter();
|
||||||
param.size = (int)(8*2 * Math.max(Unit.dp.scl(1f), 0.5f));
|
param.size = (int)(9*2 * Math.max(Unit.dp.scl(1f), 0.5f));
|
||||||
//param.size = (int)(14*2 * Math.max(Unit.dp.scl(1f), 0.5f));
|
//param.size = (int)(14*2 * Math.max(Unit.dp.scl(1f), 0.5f));
|
||||||
param.shadowColor = Color.DARK_GRAY;
|
param.shadowColor = Color.DARK_GRAY;
|
||||||
param.shadowOffsetY = 2;
|
param.shadowOffsetY = 2;
|
||||||
|
|||||||
Reference in New Issue
Block a user