ImGui.Core:getStyle

From GiderosMobile
Revision as of 15:28, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")

Available since: Gideros 2020.9
Class: ImGui

Description

Accesses the current Style structure (colors, sizes). <syntaxhighlight lang="lua"> (style) = ImGui:getStyle() </source>

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

Return values

Returns (style) the ImGui current style

Example

<syntaxhighlight lang="lua"> local ui = ImGui.new() local style = ui:getStyle() </source>