All public logs

From GiderosMobile

Combined display of all available logs of GiderosMobile. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 01:32, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:smallButton (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a button with FramePadding=(0,0) to easily embed within text. <syntaxhighlight lang="lua"> ImGui:smallButton(text) </syntaxhighlight> === Parameters === '''text''': (string) the button text<br/> === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() self.imgui = ImGui.new() -- we create a variable to hold our window statu...")
  • 01:32, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:text (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets some text to be displayed. <syntaxhighlight lang="lua"> ImGui:text(text) </syntaxhighlight> === Parameters === '''text''': (string) the text to be displayed<br/> === 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 e...")
  • 01:32, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:sliderInt (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a regular int slider. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:sliderInt(label,value,[min=0,max=0,formatString= "%d",ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value''': (number) the current value<br/> '''min''': (number) the min value<br/> '''max''': (number) the max value<br/> '''formatString''':...")
  • 01:32, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:sliderFloat3 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 3 regular float sliders side by side. <syntaxhighlight lang="lua"> (number), (number), (number), (bool) = ImGui:sliderFloat3(label, value1, value2, value3, [min=0, max=0, formatString="%.3f", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the current first value<br/> '''value2''': (number) the c...")
  • 01:32, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:sliderFloat4 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 4 regular float sliders side by side. <syntaxhighlight lang="lua"> (number), (number), (number), (number), (bool) = ImGui:sliderFloat4(label, value1, value2, value3, value4, [min=0, max=0, formatString="%.3f", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the current first value<br/> '''val...")
  • 01:32, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:sliderAngle (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a regular angle slider. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:sliderAngle(label, valueInRad, [min_degrees=-360, max_degrees=360, formatString="%.0f deg", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''valueInRad''': (number) the current value in radians<br/> '''min_degrees''': (number) the min v...")
  • 01:32, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:sliderFloat (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a regular float slider. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:sliderFloat(label,value,[min=0,max=0,formatString= "%.3f",ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value''': (number) the current value<br/> '''min''': (number) the min value<br/> '''max''': (number) the max value<br/> '''formatStri...")
  • 01:32, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:textColored (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets the text to be displayed with a given color and alpha. <syntaxhighlight lang="lua"> ImGui:textColored(text,color,alpha) </syntaxhighlight> === Parameters === '''text''': (string) the text to be displayed<br/> '''color''': (number) the color of the text in hex format<br/> '''alpha''': (number) the alpha of the text between 0 and 1<br/> === Example === <syntaxhighlight lan...")
  • 01:31, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:textDisabled (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets a text to be disabled. <syntaxhighlight lang="lua"> ImGui:textDisabled(text) </syntaxhighlight> === Parameters === '''text''': (string) the text to be disabled<br/> === 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 -- window0...")
  • 01:31, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:textWrapped (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets a text to be wrapped. <syntaxhighlight lang="lua"> ImGui:textWrapped(text) </syntaxhighlight> === Parameters === '''text''': (string) the text to be wrapped<br/> === 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 e...")
  • 01:31, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:vFilledSliderFloat (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a regular vertical filled float slider. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:vFilledSliderFloat(label, mirrorFlag, w, h, value, min, max, [formatString="%.3f", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''mirrorFlag''': (number) whether to mirror the slider or not<br/> '''w''': (number) the s...")
  • 01:31, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:vFilledSliderInt (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a regular vertical filled int slider. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:vFilledSliderInt(label, mirrorFlag, w, h, value, min, max, [formatString="%d", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''mirrorFlag''': (number) whether to mirror the slider or not<br/> '''w''': (number) the slider...")
  • 01:31, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:vSliderFloat (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a regular vertical float slider. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:vSliderFloat(label, w, h, value, min, max, [formatString="%.3f", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''w''': (number) the slider width<br/> '''h''': (number) the slider height<br/> '''value''': (number) the current value...")
  • 01:31, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:vSliderInt (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a regular vertical int slider. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:vSliderInt(label, w, h, value, min, max, [formatString="%d", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''w''': (number) the slider width<br/> '''h''': (number) the slider height<br/> '''value''': (number) the current value<br/>...")
  • 01:31, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:dragFloat4 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 4 float drag sliders, side by side. <syntaxhighlight lang="lua"> (number), (number), (number), (number), (bool) = ImGui:dragFloat4(label, value1, value2, value3, value4, [incStep=1, min=0, max=0, formatString="%.3f", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the current 1st value<br/> '...")
  • 01:30, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:dragFloat3 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 3 float drag sliders, side by side. <syntaxhighlight lang="lua"> (number), (number), (number), (bool) = ImGui:dragFloat3(label, value1, value2, value3, [incStep=1, min=0, max=0, formatString="%.3f", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the current 1st value<br/> '''value2''': (numb...")
  • 01:30, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:dragFloat2 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 2 float drag sliders, side by side. <syntaxhighlight lang="lua"> (number), (number), (bool) = ImGui:dragFloat2(label, value1, value2, [incStep=1, min=0, max=0, formatString="%.3f", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the current 1st value<br/> '''value2''': (number) the current 2nd va...")
  • 01:30, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:dragFloat (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a float drag slider. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:dragFloat(label, value, [incStep=1, min=0, max=0, formatString="%.3f", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value''': (number) the current value<br/> '''incStep''': (number) the increment step<br/> '''min''': (number) the min value...")
  • 01:30, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:combo (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an item in a list of items in the form of a combo box. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:combo(label,currentitem,items) </syntaxhighlight> === Parameters === '''label''': (string) the combo box label<br/> '''currentitem''': (number) the combo box current selected item<br/> '''items''': (table) the combo box list of items<br/> === Return values ===...")
  • 01:30, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:colorPicker4 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an RGBA color picker widget. <syntaxhighlight lang="lua"> (number), (number), (number), (number), (bool) = ImGui:colorPicker4(label, color, alpha, [ImGuiColorEditFlags=0, originalColor=0xffffff, originalAlpha=1]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''color''': (number) the current color<br/> '''alpha''': (number) the current a...")
  • 01:30, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:colorPicker3 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an RGB color picker widget. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:colorPicker3(label, color, [ImGuiColorEditFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''color''': (number) the current color, ''should be the same as number''<br/> '''ImGuiColorEditFlags''': (number) one of ImGui color edit flags<br/> === Return...")
  • 01:30, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:colorEdit4 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an RGBA color edit widget that consists of 4 inputs (RGBA) along with a color picker. <syntaxhighlight lang="lua"> (number), (number), (bool) = ImGui:colorEdit4(label, color, alpha, [ImGuiColorEditFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''color''': (number) the current color<br/> '''alpha''': (number) the current alpha bet...")
  • 01:30, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:colorEdit3 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an RGB color edit widget that consists of 3 inputs (RGB) along with a color picker. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:colorEdit3(label, color, [ImGuiColorEditFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''color''': (number) the current color<br/> '''ImGuiColorEditFlags''': (number) one of ImGui color edit fl...")
  • 01:29, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:colorButton (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a simple color button. <syntaxhighlight lang="lua"> (bool) = ImGui:colorButton(string_id, color, alpha, [width=0, height=0, ImGuiColorEditFlags=0]) </syntaxhighlight> === Parameters === '''string_id''': (string) the button ID<br/> '''color''': (number) the button color in hexadecimal<br/> '''alpha''': (number) the buttton alpha<br/> '''width''': (number) the button wi...")
  • 01:29, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:checkbox (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a checkbox. <syntaxhighlight lang="lua"> (bool), (bool) = ImGui:checkbox(text,flag) </syntaxhighlight> === Parameters === '''text''': (string) the checkbox text<br/> '''flag''': (bool) the checkbox status, true=checked, false=unchecked<br/> === Return values === '''Returns''' (bool) the new current boolean value<br/> '''Returns''' (bool) whether a value has changed '...")
  • 01:29, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:button (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a button. <syntaxhighlight lang="lua"> ImGui:button(text,w,h) </syntaxhighlight> === Parameters === '''text''': (string) the button text<br/> '''w''': (number) the button width '''optional'''<br/> '''h''': (number) the button height '''optional'''<br/> === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() self.imgui = ImG...")
  • 01:29, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:bulletText (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a bulleted text. <syntaxhighlight lang="lua"> ImGui:bulletText(text) </syntaxhighlight> === Parameters === '''text''': (string) the text to be displayed<br/> === 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 e...")
  • 01:29, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:bullet (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a bullet. <syntaxhighlight lang="lua"> ImGui:bullet() </syntaxhighlight> {{ImGui}}")
  • 01:29, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:beginTable (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Pushes a Table to the stack and starts appending to it. <syntaxhighlight lang="lua"> (bool) = ImGui:beginTable(id,column [,flag=0,outer_w=0,outer_h=0,inner_width=0]) </syntaxhighlight> '''note''': parameters between [] are optional parameters with their default values === Pa...", and the only contributor was "MoKaLux" (talk))
  • 01:29, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:beginTabBar (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Pushes a TabBar to the stack and starts appending to it. <syntaxhighlight lang="lua"> (bool) = ImGui:beginTabBar(str_id [, ImGui.TabBarFlags = 0]) </syntaxhighlight> '''note''': parameters between [] are optional parameters with their default values === Parameters === '''str...", and the only contributor was "MoKaLux" (talk))
  • 01:29, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:beginWindow (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Pushes a Window to the stack and starts appending to it. <syntaxhighlight lang="lua"> (bool) (bool) = ImGui:beginWindow(name,open,flags) </syntaxhighlight> '''note''': if ''open'' is nil (window with no X button) then only the second boolean is returned. The boolean will then return whether the window is expanded or colapsed. === Parameters === '''name''': (string) the window...")
  • 01:29, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:beginDisabled (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Starts a stack that can be disabled and starts appending to it. <syntaxhighlight lang="lua"> ImGui:beginDisabled(disabledFlag) </syntaxhighlight> === Parameters === '''disabledFlag''': (bool) whether to disable the stack<br/> === Example === <syntaxhighlight lang="lua"> requ...", and the only contributor was "MoKaLux" (talk))
  • 01:28, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:arrowButton (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a square button with an arrow shape. <syntaxhighlight lang="lua"> ImGui:arrowButton(stringID,direction) </syntaxhighlight> ''direction'' possible value: *0 = arrow left *1 = arrow right *2 = arrow up *3 = arrow down === Parameters === '''stringID''': (string) the button ID<br/> '''direction''': (number) the arrow direction<br/> === Example === <syntaxhighlight lang=...")
  • 01:28, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core.new (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Initializes a new ImGui instance. <syntaxhighlight lang="lua"> ImGui.new(font_atlas,mouse_listeners,keyboard_listeners,touch_listeners) </syntaxhighlight> === Parameters === '''font_atlas''': copy fonts '''optional, default=nil'''<br/> '''mouse_listeners''': (bool) add internal mouse event listeners '''optional, default=false'''<br/> '''keyboard_listeners''': (bool) add intern...")
  • 01:25, 11 October 2024 MoKaLux talk contribs deleted page ImGui.DrawList (content was: "__NOTOC__ '''Supported platforms:''' File:Platform android.pngFile:Platform ios.pngFile:Platform mac.pngFile:Platform pc.pngFile:Platform html5.pngFile:Platform winrt.pngFile:Platform win32.png<br/> '''Available since:''' Gideros 2020.9<br/> === Description === '''note''': this part of the documentation is being merged and will be deleted {|- |...", and the only contributor was "MoKaLux" (talk))
  • 01:23, 11 October 2024 MoKaLux talk contribs deleted page ImGui.DrawList:getFontSize (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.DrawList<br/> === Description === Gets the current window ImGui draw list font size. <syntaxhighlight lang="lua"> (number) = ImGui.DrawList:getFontSize() </syntaxhighlight> === Return values === '''Returns''' (number) the draw list font size<br/> === Example === <syntaxhighlight lang="lua"> </syntaxhighlight> {{ImGui.DrawList}}")
  • 01:23, 11 October 2024 MoKaLux talk contribs deleted page ImGui.DrawList:getFont (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.DrawList<br/> === Description === Gets the current window ImGui draw list font. <syntaxhighlight lang="lua"> (font) = ImGui.DrawList:getFont() </syntaxhighlight> === Return values === '''Returns''' (font) the draw list font<br/> === Example === <syntaxhighlight lang="lua"> </syntaxhighlight> {{ImGui.DrawList}}")
  • 01:22, 11 October 2024 MoKaLux talk contribs deleted page ImGui.DrawList:getCurveTessellationTol (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.DrawList<br/> === Description === Gets the tessellation tolerance when using PathBezierCurveTo() without a specific number of segments. Decrease for highly tessellated curves (higher quality, more polygons), increase to reduce quality. <syntaxhighlight lang="lua"> (number) = ImGui.DrawList:getCurveTessellationTol() </syntaxhighlight> === Return values === '''Returns''' (number) the curve tessellation...")
  • 01:22, 11 October 2024 MoKaLux talk contribs deleted page Template:ImGui.Style (content was: " ---- *Dear ImGui {{Special:PrefixIndex/ImGui.Style}} {{Gideros deco stars01}} {{GIDEROS IMPORTANT LINKS}} Category:ImGui", and the only contributor was "MoKaLux" (talk))
  • 01:21, 11 October 2024 MoKaLux talk contribs deleted page Template:ImGui.DrawList (content was: " ---- *Dear ImGui {{Special:PrefixIndex/ImGui.DrawList}} {{Gideros deco stars01}} {{GIDEROS IMPORTANT LINKS}} Category:ImGui", and the only contributor was "MoKaLux" (talk))
  • 01:20, 11 October 2024 MoKaLux talk contribs deleted page ImGui.DrawList:getCircleSegmentMaxError (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.DrawList<br/> === Description === Gets the maximum error (in pixels) allowed when using AddCircle()/AddCircleFilled() or drawing rounded corner rectangles with no explicit segment count specified. Decrease for higher quality but more geometry. <syntaxhighlight lang="lua"> (number) = ImGui.DrawList:getCircleSegmentMaxError() </syntaxhighlight> === Return values === '''Returns''' (number) the circle max...")
  • 01:20, 11 October 2024 MoKaLux talk contribs deleted page ImGui.DrawList:addRect (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.DrawList<br/> === Description === Adds a rectangle to an ImGui draw list. <syntaxhighlight lang="lua"> ImGui.DrawList:addRect(p_min_x, p_min_y, p_max_x, p_max_y, color, [rounding=0, rounding_corners=ImGui.CornerFlags_All, thickness=1]) </syntaxhighlight> === Parameters === '''p_min_x''': (number) the rectangle minimum x coordinate<br/> '''p_min_y''': (number) the rectangle minimum y coordinate<br/>...")
  • 01:19, 11 October 2024 MoKaLux talk contribs deleted page ImGui.DrawList:addLine (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.DrawList<br/> === Description === Adds a line to an ImGui draw list. <syntaxhighlight lang="lua"> ImGui.DrawList:addLine(p1, p2, color, [alpha=1, thickness=1]) </syntaxhighlight> === Parameters === '''p1''': (number) the x and y coordinate of the line starting position<br/> '''p2''': (number) the x and y coordinate of the line ending position<br/> '''color''': (number) the color in hexadecimal value<b...")
  • 01:19, 11 October 2024 MoKaLux talk contribs deleted page ImGui.DrawList:getWindowDrawList (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.DrawList<br/> === Description === Gets the current window ImGui draw list. <syntaxhighlight lang="lua"> (drawlist) = ImGui:getWindowDrawList() </syntaxhighlight> === Return values === '''Returns''' (drawlist) the current window draw list<br/> === Example === <syntaxhighlight lang="lua"> require "ImGui" local imgui = ImGui.new() stage:addChild(imgui) local window01 = true function onEnterFrame(e)...")
  • 01:19, 11 October 2024 MoKaLux talk contribs deleted page ImGui.DrawList:getForegroundDrawList (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.DrawList<br/> === Description === Gets the foreground ImGui draw list. <syntaxhighlight lang="lua"> (drawlist) = ImGui:getForegroundDrawList() </syntaxhighlight> === Return values === '''Returns''' (drawlist) the foreground draw list<br/> === Example === <syntaxhighlight lang="lua"> require "ImGui" local imgui = ImGui.new() stage:addChild(imgui) function onEnterFrame(e) -- 1 we start ImGui imgui:...")
  • 01:19, 11 October 2024 MoKaLux talk contribs deleted page ImGui.DrawList:getBackgroundDrawList (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.DrawList<br/> === Description === Gets the background ImGui draw list. <syntaxhighlight lang="lua"> (drawlist) = ImGui:getBackgroundDrawList() </syntaxhighlight> === Return values === '''Returns''' (drawlist) the background draw list<br/> === Example === <syntaxhighlight lang="lua"> require "ImGui" local imgui = ImGui.new() stage:addChild(imgui) function onEnterFrame(e) -- 1 we start ImGui imgui:...")
  • 01:16, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style (content was: "__NOTOC__ '''Supported platforms:''' File:Platform android.pngFile:Platform ios.pngFile:Platform mac.pngFile:Platform pc.pngFile:Platform html5.pngFile:Platform winrt.pngFile:Platform win32.png<br/> '''Available since:''' Gideros 2020.9<br/> === Description === '''note''': this part of the documentation is being merged and will be deleted {|- |...", and the only contributor was "MoKaLux" (talk))
  • 01:16, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:setAlpha (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Sets the ImGui global style alpha. <syntaxhighlight lang="lua"> ImGui.Style:setAlpha(alpha) </syntaxhighlight> === Parameters === '''alpha''': (number) alpha value, between 0 and 1<br/> === Example === <syntaxhighlight lang="lua"> </syntaxhighlight> {{ImGui.Style}}")
  • 01:16, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:setColor (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Sets a color to an ImGui element. <syntaxhighlight lang="lua"> ImGui.Style:setColor(imguielement,color,alpha) </syntaxhighlight> === Parameters === '''imguielement''': (String) the ImGui element target '''(see ImGui.CONST.Col)'''<br/> '''color''': (number) the color in hex format<br/> '''alpha''': (number) the alpha between 0 and 1, default=1 '''optio...")
  • 01:15, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:setScrollbarRounding (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Sets the ImGui global style scrollbar rounding value. <syntaxhighlight lang="lua"> ImGui.Style:setScrollbarRounding(rounding) </syntaxhighlight> === Parameters === '''rounding''': (number) the window scrollbar rounding value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui.new() stage:addChild(imgui) local style = imgui:getStyle() style:setScrollba...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)