Difference between revisions of "Dear ImGui"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 10: Line 10:
  
 
To use Dear ImGui in your project you need to add the ImGui plugin and call require like so:
 
To use Dear ImGui in your project you need to add the ImGui plugin and call require like so:
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
require 'ImGui'
 
require 'ImGui'
 
</source>
 
</source>

Revision as of 15:26, 13 July 2023

Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.pngPlatform html5.pngPlatform winrt.pngPlatform win32.png
Available since: Gideros 2020.9

Description

This is an implementation of the Dear ImGui library.

See full original documentation here: https://pthom.github.io/imgui_manual_online/manual/imgui_manual.html


To use Dear ImGui in your project you need to add the ImGui plugin and call require like so: <syntaxhighlight lang="lua"> require 'ImGui' </source>


This is a brand new plugin in Gideros Studio so it may take some time to document it thoroughly.

In the meantime, the author's GitHub is the best place to get info regarding Dear ImGui Gideros functions.

https://github.com/MultiPain/Gideros_ImGui


Of course, Gideros Wiki is here to help as well. You will find below some Dear ImGui examples implemented in Gideros Studio. ImGui_Examples

Classes