don't use h2 title font

keeping the font around for later usage though
This commit is contained in:
m 2023-01-27 00:00:18 -06:00
parent d802dcd427
commit 0f2886605c

View File

@ -103,3 +103,21 @@ if not Engine.InFrontend() then
return res
end
end
--[[
-- H2 title font
if game:issingleplayer() or
(user_language == "simplified_chinese" or user_language == "traditional_chinese" or user_language ==
"japanese_partial" or user_language == "korean") then
return
end
local scale = function(size)
return size * 720 / 1080
end
CoD.TextSettings.H1TitleFont = {
Font = RegisterFont("fonts/bank_h1.ttf", 50),
Height = scale(50)
}
]]--