Difference between revisions of "ImGui.DrawList:getForegroundDrawList"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Gets the foreground ImGui draw list.
 
Gets the foreground ImGui draw list.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(drawlist) = ImGui:getForegroundDrawList()
 
(drawlist) = ImGui:getForegroundDrawList()
 
</source>
 
</source>
Line 13: Line 13:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
require "ImGui"
 
require "ImGui"
  

Revision as of 15:28, 13 July 2023

Available since: Gideros 2020.9
Class: ImGui.DrawList

Description

Gets the foreground ImGui draw list. <syntaxhighlight lang="lua"> (drawlist) = ImGui:getForegroundDrawList() </source>

Return values

Returns (drawlist) the foreground draw list

Example

<syntaxhighlight lang="lua"> require "ImGui"

local imgui = ImGui.new() stage:addChild(imgui)

function onEnterFrame(e) -- 1 we start ImGui imgui:newFrame(e) -- 2 the main window local drawlist = imgui:getForegroundDrawList() drawlist:addCircle(128, 128, 64, 0x00ff00, 1, 32) -- 3 we end the frame and render to screen imgui:endFrame() imgui:render() end

stage:addEventListener(Event.ENTER_FRAME, onEnterFrame) </source>