- 423
- 249
- Версия MoonLoader
- .027.0-preview
Короче, нашёл прикол. Если юзать иконки с кодом ниже, то вместо иконок будет вопросики. Методом тыка нашёл проблему. Проблема в строке с fsStil. Оно ломает всё к хуям. Кто-то знает как это можно пофиксить? Я пока попробую путь шрифта поменять.
Lua:
local fa = require 'faIcons'
local fa_glyph_ranges = imgui.ImGlyphRanges({ fa.min_range, fa.max_range })
local fsStil = nil
local fa_font = nil
function imgui.BeforeDrawFrame()
if fsStil == nil then
fsStil = imgui.GetIO().Fonts:AddFontFromFileTTF(getFolderPath(0x14) .. '\\trebucbd.ttf', 17.0, nil, imgui.GetIO().Fonts:GetGlyphRangesCyrillic())
end
if fa_font == nil then
local font_config = imgui.ImFontConfig()
font_config.MergeMode = true
fa_font = imgui.GetIO().Fonts:AddFontFromFileTTF('moonloader/resource/fonts/fontawesome-webfont.ttf', 14.0, font_config, fa_glyph_ranges)
end
end
--то что снизу в имгуи
imgui.PushFont(fsStil) imgui.CenterTextColoredRGB('Функции') imgui.PopFont()
if imgui.Button(fa.ICON_FA_FILE_CODE..u8'Сохранить', imgui.ImVec2(200, 25)) then
end