[ElvUI] A brief tutorial on modifying damage fonts
1. If it is the original interface of the system, directly modify the ARKai_C.TTF file. 2. If you are ElvUI, modify it first in the fonts folder. Copy your own font file, for example BIG.ttf. Find this file in the plug-in: D:\World of Warcraft Classic\World of Warcraft\_retial_\Interface\AddOns\ElvUI\Libraries\LibSharedMedia-3.0\LibSharedMedia-3.0.lua
elseif locale == "zhCN" then
LOCALE_MASK = lib.LOCALE_BIT_zhCN
--
SML_MT_font[" Damage number"] SML_MT_font["Default"] = [[Fonts\ARKai_T.ttf]]
SML_MT_font["Chat"] = [[Fonts\ARHei.ttf ]]
This is the font called by ElvUI by default. We manually add the fonts we need.
elseif locale == "zhCN" then
LOCALE_MASK = lib.LOCALE_BIT_zhCN
--
SML_MT_font[" Damage number"] SML_MT_font["Default"] = [[Fonts\ARKai_T.ttf]]
SML_MT_font["Chat"] = [[Fonts\ARHei.ttf ]]
SML_MT_font["大字"] = [[Fonts\BIG.ttf]]
Then in the game, ElvUI Settings-General-Material-replace combat font, select your font, reload the interface to take effect/rl
Directly modifying ARKai_C.TTF will affect the fonts including the avatar (coordinates, health value, mana value , energy value, rage value, battle damage text) If your fonts are garbled, you need an app that combines digital fonts and Chinese fonts:
https://github.com/nowar-fonts/Warcraft-Font-Merger
The reason why changing the custom font is unsuccessful may be that other plug-ins also use sharemedia and are pre-loaded font. So the desired solution is to find the plugin that uses sharemedia and is the first in alphabetical order among your plugins, or modify the LibSharedMedia-3.0.lua file, and that's it. You can search for this file in the AddOns folder to find out how many plug-ins use this library.
Finally, thank you to the WeChat public account: Little Knowledge on World of Warcraft for your full support
Articles are uploaded by users and are for non-commercial browsing only. Posted by: Lomu, please indicate the source: https://www.daogebangong.com/en/articles/detail/mo-shou-shi-jie-ElvUI-shang-hai-zi-ti-xiu-gai-jian-ming-jiao-cheng.html
评论列表(196条)
测试