|
2026-03-12 03:40
조회: 269
추천: 0
D2RMM 사용시 특정 글자가 작게 나오는 증상 해결법![]() ** SettingsSliderValueFiels 부분의 style 부분이 2개 있을 경우 아예 style 부분이 지워져서 글자가 작게 나오는 증상 해결법은 사용중인 mod.js 파일에 아래부분을 추가해주시면 됩니다. FontSize 옆의 숫자는 각종 글자들의 폰트 사이즈입니다. 제가 임의로 조금 줄여놨는데 편한 숫자로 지정하시면 됩니다. const profilePath = 'global/ui/layouts/_profilehd.json'; const profileHD = D2RMM.readJson(profilePath); Object.assign(profileHD, { HugeFontSize: 56, XExtraLargeFontSize: 46, ExtraLargeFontSize: 38, XLargeFontSize: 36, LargeFontSize: 34, XMediumLargeFontSize: 32, MediumLargeFontSize: 30, SmallFontSize: 20, TooltipFontSize: 28, GameNameFilterFontSize: 26, SettingsSliderValueFields: { rect: '$OptionsSliderValueRect', style: '$StyleSettingsNumeric' } }); D2RMM.writeJson(profilePath, profileHD);
|

