Difference between revisions of "ImGui.Core:getStyle"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 7: Line 7:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
(style) = ImGui:getStyle()
 
(style) = ImGui:getStyle()
</source>
+
</syntaxhighlight>
  
 
Always use pushStyleColor(), pushStyleVar() to modify style mid-frame!
 
Always use pushStyleColor(), pushStyleVar() to modify style mid-frame!
Line 18: Line 18:
 
local ui = ImGui.new()  
 
local ui = ImGui.new()  
 
local style = ui:getStyle()
 
local style = ui:getStyle()
</source>
+
</syntaxhighlight>
  
 
{{ImGui}}
 
{{ImGui}}

Latest revision as of 15:29, 13 July 2023

Available since: Gideros 2020.9
Class: ImGui

Description

Accesses the current Style structure (colors, sizes).

(style) = ImGui:getStyle()

Always use pushStyleColor(), pushStyleVar() to modify style mid-frame!

Return values

Returns (style) the ImGui current style

Example

local ui = ImGui.new() 
local style = ui:getStyle()