Skip to content

Instantly share code, notes, and snippets.

@MeowKim
Last active June 5, 2020 04:14
Show Gist options
  • Save MeowKim/28f7a079cc885aeeb75375cb8a6d4234 to your computer and use it in GitHub Desktop.
Save MeowKim/28f7a079cc885aeeb75375cb8a6d4234 to your computer and use it in GitHub Desktop.
Unity Personal에서 다크 테마를 쓰기위한 가이드.

📝 개요

Unity Personal에서 다크 테마를 쓰기위한 가이드.
Unity는 Personal 라이센스에 다크 테마를 지원하지 않음.
ProPlus만 가능. 😥
하지만 방법이 있음! 🎉👏

본 가이드는 아래 언어들을 지원함.

최초 생성: 2020-06-04
마지막 업데이트: 2020-06-05

✋ 준비

image

먼저 unity.exe 파일을 백업해둠.

💿 HxD Hex Editor 설치 및 실행

HxD Hex Editor

📂 unity.exe 파일 열기

File > Open으로 가서 unity.exe 선택.

내 경우 (Windows 10, Unity 2019.3.15f1),
C:\Program Files\Unity\Hub\Editor\2019.3.15f1\Editor에 위치.

🔍 검색 및 변경

image

Search > Find(Ctrl+F)로 이동.
Hex-values탭 선택.
Search directionAll로 선택.
Unity version에 따라 16진수 검색.
변경 (Ctrl+R) 후 저장 (Ctrl+s).

  • 2019.3
00 75 15 33 C0 EB 13 90								# 75를 74로 변경
  • 2019.1
74 04 33 C0 EB 02 8B 07								# 74를 75로 변경
  • 2018.2 & 2018.3
84 C0 75 08 33 C0 48 83 C4 30 5B C3 8B 03 48		# 75를 74로 변경

🎉 짜잔!

image

이제 눈이 덜 피곤할 것임. 😉

👀 레퍼런스

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment