All public logs
From GiderosMobile
Combined display of all available logs of GiderosMobile. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 22:24, 8 October 2024 MoKaLux talk contribs deleted page ImGui Examples (content was: "__TOC__ Here you will find various resources to help you create GUI with '''Dear ImGui''' in Gideros Studio. '''note''': you may have to provide your own assets (fonts, gfx, …). === ImGui Custom Font === <syntaxhighlight lang="lua"> require "ImGui" -- imgui self.imgui = ImGui.new() -- imgui font local imguiio = self.imgui:getIO() local fontatlas = imguiio:getFonts() local myfont = fontatlas:addFont("fonts/Cabin-Regular-TTF.ttf", 22) -- your custom font here imguiio:se...")