Difference between revisions of "ImGui.DrawList:getBackgroundDrawList"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 7: Line 7:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
(drawlist) = ImGui:getBackgroundDrawList()
 
(drawlist) = ImGui:getBackgroundDrawList()
</source>
+
</syntaxhighlight>
  
 
=== Return values ===
 
=== Return values ===
Line 31: Line 31:
  
 
stage:addEventListener(Event.ENTER_FRAME, onEnterFrame)
 
stage:addEventListener(Event.ENTER_FRAME, onEnterFrame)
</source>
+
</syntaxhighlight>
  
 
{{ImGui.DrawList}}
 
{{ImGui.DrawList}}

Latest revision as of 15:29, 13 July 2023

Available since: Gideros 2020.9
Class: ImGui.DrawList

Description

Gets the background ImGui draw list.

(drawlist) = ImGui:getBackgroundDrawList()

Return values

Returns (drawlist) the background draw list

Example

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:getBackgroundDrawList()
	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)