- 243
- 22
- Версия MoonLoader
- .026-beta
Поставил фонт, он не выводит кириллицу. Помогите пожалуйста.
Lua:
imgui.OnInitialize(function()
imgui.GetIO().IniFilename = nil
local glyph_ranges = imgui.GetIO().Fonts:GetGlyphRangesCyrillic()
exampleFont = imgui.GetIO().Fonts:AddFontFromFileTTF('moonloader/resource/fonts/Eagle Light.otf', 35, nil, glyph_ranges)
end)
local newFrame = imgui.OnFrame(
function() return renderWindow[0] end,
function(player)
local resX, resY = getScreenResolution()
local sizeX, sizeY = 300, 300
imgui.SetNextWindowPos(imgui.ImVec2(resX / 2, resY / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
imgui.SetNextWindowSize(imgui.ImVec2(sizeX, sizeY), imgui.Cond.FirstUseEver)
imgui.Begin('Main Window', renderWindow)
imgui.PushFont(exampleFont)
imgui.Text(u8'Sex на Французком пляже')
imgui.PopFont()
imgui.End()
end
)