Difference between revisions of "ImGui.Core:button"

From GiderosMobile
(.deltaTime)
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Displays a button.
 
Displays a button.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
ImGui:button(text,w,h)
 
ImGui:button(text,w,h)
 
</source>
 
</source>
Line 15: Line 15:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
MyClass = Core.class(Sprite)
 
MyClass = Core.class(Sprite)
  

Revision as of 15:27, 13 July 2023

Available since: Gideros 2020.9
Class: ImGui

Description

Displays a button. <syntaxhighlight lang="lua"> ImGui:button(text,w,h) </source>

Parameters

text: (string) the button text
w: (number) the button width optional
h: (number) the button height optional

Example

<syntaxhighlight lang="lua"> MyClass = Core.class(Sprite)

function MyClass:init() self.imgui = ImGui.new() -- we create a variable to hold our window status self.window01 = true -- window01 exists at start up -- order self:addChild(self.imgui) -- LISTENERS self:addEventListener("enterBegin", self.onTransitionInBegin, self) end

-- LOOP function MyClass:onEnterFrame(e) -- 1 we start ImGui self.imgui:newFrame(e.deltaTime) -- 2 we build our GUI if self.window01 then -- is window01 existant? local windowdrawn = false -- is window01 colapsed? self.window01, windowdrawn = self.imgui:beginWindow( "Hello ImGui", -- window title self.window01 -- is window01 existant? ) if windowdrawn then -- the variable is false when window01 is collapsed if imgui:button("button 01", 64, 16) then print("button 01 clicked") end end self.imgui:endWindow() end self.imgui:endFrame() self.imgui:render() end

-- EVENT LISTENERS function MyClass:onTransitionInBegin() self:addEventListener(Event.ENTER_FRAME, self.onEnterFrame, self) end </source>