[유니티 스크립트 소스] XKCDColors
2020. 3. 10.
1. 참고 각 컬러의 색은 https://coderzero.tistory.com/entry/기타-색상표 에 있습니다. 2. 소스 using System; using UnityEngine; public static class XKCDColors { internal class ColorTranslator { public static Color FromHtml(string hexString) { return new Color(Convert.ToInt32(hexString.Substring(1, 2), 16) / 255f, Convert.ToInt32(hexString.Substring(3, 2), 16) / 255f, Convert.ToInt32(hexString.Substring(5, 2), 16) / 25..