Revision history of "ImGui Examples"

From GiderosMobile

There is no edit history for this page.

This page has been deleted. The deletion, protection, and move log for the page are provided below for reference.

  • 23: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...")