- 326
- 29
- Версия MoonLoader
- .026-beta
Lua:
imgui.OnInitialize(function()
imgui.GetIO().IniFilename = nil
applyCustomTheme()
Font = {}
imgui.GetIO().Fonts:Clear()
local ranges = imgui.GetIO().Fonts:GetGlyphRangesCyrillic()
Font = imgui.GetIO().Fonts:AddFontFromMemoryCompressedBase85TTF(EagleSans, 15, nil, ranges)
imgui.GetIO().Fonts:AddFontFromMemoryCompressedBase85TTF(faicons.get_font_data_base85('solid'), 15, _, ranges)
end)
--
onframe
if imgui.Button(faicons('TRASH'), imgui.ImVec2(50, 25)) then
ffi.copy(messageInput, u8'')
end

