애드온 · 모드 자료실

전체보기

모바일 상단 메뉴

본문 페이지

[패키지] 다클라 저시력(?) 모드입니다

음하하하핫핫
댓글: 1 개
조회: 350
추천: 2
2026-09-07 03:12:08

4k 해상도에서 8클라 창정렬 3x3 모드 기준으로 
캐릭명, 게임이름, 인게임정보 등이 잘 안보여서 몇가지 수정해봤습니다
characterselectpanelhd.json, _profilehd.json, hudwarningshd.json
3개의 파일 수정해야 하는데 사용하시는 모드에 각 파일이 있으면 백업후 해당 내용 수정하시고
파일 없으면 첨부 파일 넣으시면 될듯합니다
폰트 사이즈랑 폰트 컬러는 _profilehd.json 파일 안에도 있고
본문 맨밑에도 있으니 복사해서 쓰시면 됩니다
항목에 따라서 적용안되는 폰트 사이즈 있을수 있습니다
대기실에서 게임이름 넣는 칸 크기를 더 크게 해서 폰트 더 크게 하고 싶은데 방법을 모릅니다ㅠㅠ



1. 초기화면에서 캐릭명 크게 하기
characterselectpanelhd.json 파일 pointSize 2개 수정
-----------------------------------------------------------------------------------------------------------------------
적용 부분
                                    "type": "TextBoxWidget", "name": "Name",
                                    "fields": {
                                        "rect": { "x": 25, "y": 68, "width": 560, "height": 55 },
                                        "style": {
                                            "fontColor": "$LightButtonTextColor",
                                            "alignment": {"h": "left", "v": "center"},
                                            "pointSize": "$XMediumLargeFontSize",  //------------------여기
                                            "spacing": "$ReducedSpacing",
                                            "dropShadow": "$DefaultDropShadow"
                                        },
                                        "useAltStyleIfDoesntFit": true,
                                        "altStyle": {
                                            "alignment": {"h": "left", "v": "center"},
                                            "fontColor": "$LightButtonTextColor",
                                            "pointSize": "$SmallFontSize",      //------------------여기
                                            "spacing": "$MinimumSpacing",
                                            "dropShadow": "$DefaultDropShadow"
-----------------------------------------------------------------------------------------------------------------------
적용 예시(첨부 파일)
                                    "type": "TextBoxWidget", "name": "Name",
                                    "fields": {
                                        "rect": { "x": 25, "y": 68, "width": 560, "height": 55 },
                                        "style": {
                                            "fontColor": "$LightButtonTextColor",
                                            "alignment": {"h": "left", "v": "center"},
                                            "pointSize": "$XExtraLargeFontSize",  //------------------캐릭명 크게
                                            "spacing": "$ReducedSpacing",
                                            "dropShadow": "$DefaultDropShadow"
                                        },
                                        "useAltStyleIfDoesntFit": true,
                                        "altStyle": {
                                            "alignment": {"h": "left", "v": "center"},
                                            "fontColor": "$LightButtonTextColor",
                                            "pointSize": "$XExtraLargeFontSize", //------------------캐릭명 크게
                                            "spacing": "$MinimumSpacing",
                                            "dropShadow": "$DefaultDropShadow"



2. 대기실에서 게임이름 크게 하기
_profilehd.json 파일에서 pointSize 1개 수정
-----------------------------------------------------------------------------------------------------------------------
적용 부분
    "StyleSettingsNumeric": {
       "fontFace": "Exocet",
       "pointSize": "$MediumFontSize",   //------------------여기
       "fontColor": "$FontColorWhite",
       "alignment": { "h": "center", "v": "center" },
-----------------------------------------------------------------------------------------------------------------------
적용 예시(첨부 파일)
    "StyleSettingsNumeric": {
        "fontFace": "Exocet",
        "pointSize": "$XLargeFontSize",  //------------------대기실 게임이름 크게
        "fontColor": "$FontColorWhite",
        "alignment": { "h": "center", "v": "center" },



3. 게임안에서 우측상단 정보 크게 하기
hudwarningshd.json 파일에서 pointSize, fontColor 수정
-----------------------------------------------------------------------------------------------------------------------
적용 부분
                    "type": "TextBoxWidget", "name": "InfoText",
                    "fields": {
                        "fitToText": true,
                        "style": {
                            "pointSize": "$MediumFontSize",              //------------------여기
                            "fontColor": "$FontColorGoldYellow",        //------------------여기
                            "alignment": { "v": "top", "h": "right" },
                            "options": { "newlineHandling": "standard" },
                            "spacing": { "kerning": 0.9 }
-----------------------------------------------------------------------------------------------------------------------
적용 예시(첨부 파일)
                    "type": "TextBoxWidget", "name": "InfoText",
                    "fields": {
                        "fitToText": true,
                        "style": {
                            "pointSize": "$HugeFontSize",  //------------------게임안에서 우측상단 정보 크게
                            "fontColor": "$FontColorRed",  //------------------게임안에서 우측상단 정보 색상
                            "alignment": { "v": "top", "h": "right" },
                            "options": { "newlineHandling": "standard" },
                            "spacing": { "kerning": 0.9 }



----------------------------------------------------------------------------------------------------------------------------
폰트 사이즈랑 폰트 컬러 복사해서 사용하세요
    // Font sizes.--------------------폰트사이즈 적당히 선택
    "HugeFontSize": 66,
    "XExtraLargeFontSize": 56, // Usage Example: "play / continue" button
    "ExtraLargeFontSize": 42,
    "XLargeFontSize": 40,
    "LargeFontSize": 38, // Usage: Primary Front End buttons ("Continue", "Single Player")
    "XMediumLargeFontSize": 34, // Usage: Player name
    "MediumLargeFontSize": 32, // Usage: Front end button ribbon buttons (CAPS), front end character select tabs
    "XMediumFontSize": 28, // Usage:Secondary Action Center Buttons, Character list title and level text
    "MediumFontSize": 26, // Usage : Settings field text
    "SmallFontSize": 22,
    "TooltipFontSize": 36,
    "CinematicsFontSize": 32,
    "AddFriendModalFontSize": 26, // Usage: AddFriendModal needs to be the same size in all profiles to support IME
    "GameNameFilterFontSize": 28, // Usage: it needs to be the same size in all profiles

    // Colors.--------------------폰트컬러 적당히 선택
    "FontColorWhite": { "r": 240, "g": 240, "b": 240, "a": 255 },
    "FontColorVeryLightGray": { "r": 240, "g": 240, "b": 240, "a": 255 },
    "FontColorBlack": { "r": 0, "g": 0, "b": 0, "a": 255 },
    "FontColorRed": { "r": 252, "g": 70, "b": 70, "a": 255 },
    "FontColorGreen": { "r": 0, "g": 252, "b": 0, "a": 255 },
    "FontColorBlue": { "r": 110, "g": 110, "b": 255, "a": 255 },
    "FontColorLightGold": { "r": 255, "g": 246, "b": 227, "a": 255 }, // usage: button text, setting text labels
    "FontColorGoldYellow" : { "r": 199, "g": 179, "b": 119, "a": 255 }, //Usage example: panel and option subtitles
    "FontColorCurrencyGold" : {"r": 209, "g": 195, "b": 120, "a": 255}, // Usage Example: Gold text
    "FontColorGold": "$FontColorGoldYellow",
    "FontColorDarkGold": { "r": 120, "g": 98, "b": 47, "a": 255 },
    "FontColorBeige" : { "r": 204, "g": 195, "b": 176, "a": 255 },
    "FontColorGray": { "r": 99, "g": 99, "b": 99, "a": 255 },
    "FontColorGrey": "$FontColorGray",
    "FontColorOrange": { "r": 255, "g": 168, "b": 0, "a": 255 },
    "FontColorDarkGreen": { "r": 0, "g": 128, "b": 0, "a": 255 },
    "FontColorYellow": { "r": 255, "g": 255, "b": 100, "a": 255 },
    "FontColorLightPurple": { "r": 192, "g": 128, "b": 242, "a": 255 },
    "FontColorLightTeal": { "r": 124, "g": 221, "b": 204, "a": 255 },
    "FontColorLightRed": { "r": 255, "g": 148, "b": 148, "a": 255 },
    "FontColorLightYellow": { "r": 255, "g": 235, "b": 164, "a": 255 },
    "FontColorLightBlue": { "r": 175, "g": 183, "b": 255, "a": 255 },
    "FontColorLightGray": { "r": 148, "g": 148, "b": 148, "a": 255 },
    "FontColorMoreLightGray": { "r": 191, "g": 191, "b": 191, "a": 255 },
    "FontColorDarkGrayBlue":  { "r": 125, "g": 141, "b": 144, "a": 255 },
    "FontColorDarkGrayGold" : { "r": 173, "g": 168, "b": 148, "a": 255 }, // Usage example: attribute points to spend
    "FontColorTransparent": { "r": 0, "g": 0, "b": 0, "a": 0 },
    "FontColorPartyOrange": { "r": 196, "g": 129, "b": 0, "a": 255 },
    "FontColorPartyGreen": {"r": 79, "g": 194, "b": 56, "a": 255 },
    "FontColorDesecrated": { "r": 154, "g": 72, "b": 252, "a": 255 },

Lv18 음하하하핫핫

모바일 게시판 하단버튼

댓글

새로고침
새로고침

모바일 게시판 하단버튼

지금 뜨는 인벤

더보기+

모바일 게시판 리스트

모바일 게시판 하단버튼

글쓰기

모바일 게시판 페이징

최근 HOT한 콘텐츠

  • 게임
  • IT
  • 유머
  • 연예
AD