Deletion log
From GiderosMobile
Below is a list of the most recent deletions.
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 15:08, 12 November 2024 MoKaLux talk contribs deleted page File:Tuto beu cbump tecs.zip
- 13:40, 23 October 2024 MoKaLux talk contribs deleted page File:WIKI KEYREMAPPING.GApp (gapp didn't work)
- 01:42, 11 October 2024 MoKaLux talk contribs deleted page ImGui (content was: "#REDIRECT ImGui.Core", and the only contributor was "MoKaLux" (talk))
- 01:41, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core (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:41, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputInt4 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets four input integer fields side by side (no plus/minus buttons). <syntaxhighlight lang="lua"> (number), (number), (number), (number), (bool) = ImGui:inputInt4(label, value1, value2, value3, value4, [ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the first value to be displayed<br/> '''value2''': (...")
- 01:40, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputInt3 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets three input int fields side by side (no plus/minus buttons). <syntaxhighlight lang="lua"> (number), (number), (number), (bool) = ImGui:inputInt3(label, value1, value2, value3, [ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the first value to be displayed<br/> '''value2''': (number) the second va...")
- 01:40, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:imageFilled (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an image with a filled background color. <syntaxhighlight lang="lua"> ImGui:imageFilled(texture,w,h,color,alpha,bg_color,bg_alpha,bordercolor,borderalpha) </syntaxhighlight> === Parameters === '''texture''': (texture) the image texture<br/> '''w''': (number) the image width<br/> '''h''': (number) the image height<br/> '''color''': (number) the image tint color in hex...")
- 01:40, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:imageButtonWithText (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an image button with some text. <syntaxhighlight lang="lua"> ImGui:imageButtonWithText(texture,text,w,h,padding,bg_color,bg_alpha,color,alpha) </syntaxhighlight> === Parameters === '''texture''': (texture) the image texture<br/> '''text''': (string) button text<br/> '''w''': (number) the image width<br/> '''h''': (number) the image height<br/> '''padding''': (number)...")
- 01:40, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:imageButton (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an image button. <syntaxhighlight lang="lua"> ImGui:imageButton(texture,w,h,padding,color,alpha,bordercolor,borderalpha) </syntaxhighlight> === Parameters === '''texture''': (texture) the image texture<br/> '''w''': (number) the image width<br/> '''h''': (number) the image height<br/> '''padding''': (number) the image padding '''optional'''<br/> '''color''': (number)...")
- 01:40, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:image (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an image. <syntaxhighlight lang="lua"> ImGui:image(texture,w,h,color,alpha,bordercolor,borderalpha) </syntaxhighlight> === Parameters === '''texture''': (texture) the image texture<br/> '''w''': (number) the image width<br/> '''h''': (number) the image height<br/> '''color''': (number) the image tint color in hex format '''optional'''<br/> '''alpha''': (number) the im...")
- 01:40, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:getIO (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Accesses the IO structure (mouse/keyboard/gamepad inputs, time, various configuration options/flags). <syntaxhighlight lang="lua"> (context) = ImGui:getIO() </syntaxhighlight> === Return values === '''Returns''' (context) a pointer to the IO class<br/> === Example === <syntaxhighlight lang="lua"> local ui = ImGui.new() local IO = ui:getIO() </syntaxhighlight> {{ImGui}}")
- 01:40, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:filledSliderInt (content was: " __NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a regular filled int slider. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:filledSliderInt(label, mirrorFlag, value, [min=0, max=0, formatString="%d", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''mirrorFlag''': (bool) whether to mirror the slider or not<br/> '''value''': (number) the current value<br/> '...")
- 01:40, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:filledSliderFloat4 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays four regular filled float sliders side by side. <syntaxhighlight lang="lua"> (number), (number), (number), (number), (bool) = ImGui:filledSliderFloat4(label, mirrorFlag, value1, value2, value3, value4, [min=0, max=0, formatString="%.3f", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''mirrorFlag''': (bool) wheth...")
- 01:39, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:filledSliderFloat3 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays three regular filled float sliders side by side. <syntaxhighlight lang="lua"> (number), (number), (number), (bool) = ImGui:filledSliderFloat3(label, mirrorFlag, value1, value2, value3, [min=0, max=0, formatString="%.3f", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''mirrorFlag''': (bool) whether to mirror the...")
- 01:39, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:filledSliderFloat2 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays two regular filled float sliders side by side. <syntaxhighlight lang="lua"> (number), (number), (bool) = ImGui:filledSliderFloat2(label, mirrorFlag, value1, value2, [min=0, max=0, formatString="%.3f", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''mirrorFlag''': (bool) whether to mirror the slider or not<br/> '...")
- 01:39, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:filledSliderFloat (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a regular filled float slider. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:filledSliderFloat(label, mirrorFlag, value, [min=0, max=0, formatString="%.3f", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''mirrorFlag''': (bool) whether to mirror the slider or not<br/> '''value''': (number) the current value<b...")
- 01:39, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:endWindow (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Pops the window from the stack. <syntaxhighlight lang="lua"> ImGui:endWindow() </syntaxhighlight> === Example === <syntaxhighlight lang="lua"> -- LOOP function MyClass:onEnterFrame(e) self.imgui:newFrame(e) if (self.window01) then -- if window exists local windowdrawn = false self.window01, windowdrawn = self.imgui:beginWindow( "Hello ImGui v"..ImGui._VERSION, -- wind...")
- 01:39, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:endFrame (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Ends the ImGui frame. <syntaxhighlight lang="lua"> ImGui:endFrame() </syntaxhighlight> It is automatically called by render(). If you don't need to render data (skipping rendering) you may call endFrame() without render()... but you'll have wasted CPU already! If you don't need to render, better to not create any windows and not call newFrame() at all! === Example === <syntax...")
- 01:39, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:endDisabled (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Ends a stack that can be disabled. <syntaxhighlight lang="lua"> ImGui:endDisabled() </syntaxhighlight> === Example === <syntaxhighlight lang="lua"> require "ImGui" local imgui = ImGui.new() stage:addChild(imgui) local window01 = true -- the starting state of window01, true=...", and the only contributor was "MoKaLux" (talk))
- 01:39, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:dragScalar (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a scalar drag slider. <syntaxhighlight lang="lua"> (number) = ImGui:dragScalar(label, ImGuiDataType, value, v_speed, [v_min=nil, v_max=nil, format=nil, ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''ImGuiDataType''': (string) an ImGui number data type<br/> '''value''': (number) the current value<br/> '''v_speed...")
- 01:39, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:dragIntRange2 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 2 int drag range sliders, side by side. <syntaxhighlight lang="lua"> (number), (number), (bool) = ImGui:dragIntRange2(label, valueMin, valueMax, [incStep=1, min=0, max=0, formatMinString="%d", formatMaxString=formatMinString, ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''valueMin''': (number) the current minim...")
- 01:38, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:dragInt4 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 4 int drag sliders, side by side. <syntaxhighlight lang="lua"> (number), (number), (number), (number), (bool) = ImGui:dragInt4(label, value1, value2, value3, value4, [incStep=1, min=0, max=0, formatString="%d", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the current 1st value<br/> '''valu...")
- 01:38, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:dragInt3 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 3 int drag sliders, side by side. <syntaxhighlight lang="lua"> (number), (number), (number), (bool) = ImGui:dragInt3(label, value1, value2, value3, [incStep=1, min=0, max=0, formatString="%d", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the current 1st value<br/> '''value2''': (number) th...")
- 01:38, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:dragInt2 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 2 int drag sliders, side by side. <syntaxhighlight lang="lua"> (number), (number), (bool) = ImGui:dragInt2(label, value1, value2, [incStep=1, min=0, max=0, formatString="%d", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the current 1st value<br/> '''value2''': (number) the current 2nd value<br...")
- 01:38, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:dragInt (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an int drag slider. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:dragInt(label, value, [incStep=1, min=0, max=0, formatString="%d", 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<br/>...")
- 01:38, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:dragFloatRange2 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 2 float drag range sliders, side by side. <syntaxhighlight lang="lua"> (number), (number), (bool) = ImGui:dragFloatRange2(label, valueMin, valueMax, [incStep=1, min=0, max=0, formatMinString="%.3f", formatMaxString=formatMinString, ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''valueMin''': (number) the current...")
- 01:38, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputInt (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets an input int field with a plus and a minus button when step is different than 0. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:inputInt(label, value, [step=0, step_fast=0, ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value''': (number) the value to be displayed<br/> '''step''': (number) the step to increment...")
- 01:38, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputFloat4 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets four input float fields side by side (no plus/minus buttons). <syntaxhighlight lang="lua"> (number), (number), (number), (number), (bool) = ImGui:inputFloat4(label, value1, value2, value3, value4, [format="%.3f", ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the first value to be displayed<br/>...")
- 01:37, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputFloat2 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets two input float fields side by side (no plus/minus buttons). <syntaxhighlight lang="lua"> (number), (number), (bool) = ImGui:inputFloat2(label, value1, value2, [format="%.3f", ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the first value to be displayed<br/> '''value2''': (number) the second value...")
- 01:37, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputFloat3 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets three input float fields side by side (no plus/minus buttons). <syntaxhighlight lang="lua"> (number), (number), (number), (bool) = ImGui:inputFloat3(label, value1, value2, value3, [format="%.3f", ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the first value to be displayed<br/> '''value2''': (nu...")
- 01:37, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputScalar (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets an input scalar field. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:inputScalar(label, ImGuiDataType, value, v_min, v_max, format, [ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''ImGuiDataType''': (number) one of ImGui data type<br/> '''value''': (number) the value to be displayed<br/> '''v_min''': (number)...")
- 01:37, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputTextMultiline (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets a multiline input text. <syntaxhighlight lang="lua"> (string), (bool) = ImGui:inputTextMultiline(label, text, bufferSize, [w=0, h=0, ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''text''': (string) the text to be displayed<br/> '''bufferSize''': (number) sets a buffer size<br/> '''w''': (number) the input text width<b...")
- 01:37, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputTextWithHint (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets an input text field with a hint when text field is empty. <syntaxhighlight lang="lua"> (string), (bool) = ImGui:inputTextWithHint(label, text, hint, bufferSize, [ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''text''': (string) the text to be displayed<br/> '''hint''': (string) a hint when no text is displayed<br/> '''...")
- 01:37, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:invisibleButton (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === A flexible button behavior without the visuals. Frequently useful to build custom behaviors using the public api (along with IsItemActive, IsItemHovered, etc.). <syntaxhighlight lang="lua"> ImGui:invisibleButton(stringID,w,h) </syntaxhighlight> === Parameters === '''stringID''': (string) the button ID<br/> '''w''': (number) the button width '''optional'''<br/> '''h''': (number...")
- 01:37, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:newFrame (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Starts a new ImGui frame, you can submit any command from this point until ''endFrame()''. <syntaxhighlight lang="lua"> ImGui:newFrame(deltaTime) </syntaxhighlight> === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() application:setBackgroundColor(0x111111) -- imgui init self.imgui = ImGui.new() -- order self:addChild(self.im...")
- 01:37, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:radioButton (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Creates one or several radio buttons. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:radioButton(text, value1, value2) </syntaxhighlight> === Parameters === '''text''': (string) the radio button text<br/> '''value1''': (number) the current active value (should be the same as number)<br/> '''value2''': (number) the value the number will change to<br/> === Return values...")
- 01:37, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:render (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Ends the ImGui frame, finalizes the draw data. You can then call getDrawData(). <syntaxhighlight lang="lua"> ImGui:render() </syntaxhighlight> === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() application:setBackgroundColor(0x111111) -- imgui init self.imgui = ImGui.new() -- order self:addChild(self.imgui) -- LISTENERS se...")
- 01:36, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:scaledImageFilled (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an image scaled to fit space while keeping its aspect ratio and a filled colored background. <syntaxhighlight lang="lua"> ImGui:scaledImageFilled(texture,w,h,color,alpha,bgcolor,bgalpha,bordercolor,borderalpha,anchorx,anchory) </syntaxhighlight> === Parameters === '''texture''': (texture) the image texture<br/> '''w''': (number) the image width<br/> '''h''': (number)...")
- 01:36, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:endTable (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Pops a Table from the stack (stops adding to it). <syntaxhighlight lang="lua"> ImGui:endTable() </syntaxhighlight> === Example === See '''ImGui:beginTable''' {{ImGui}}", and the only contributor was "MoKaLux" (talk))
- 01:36, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:filledSliderAngle (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a regular filled angle slider. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:filledSliderAngle(label, mirrorFlag, valueInRad, [min_degrees=-360, max_degrees=360, formatString="%.0f deg", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''mirrorFlag''': (bool) whether to mirror the slider or not<br/> '''valu...")
- 01:36, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:filledSliderInt2 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays two regular filled int sliders side by side. <syntaxhighlight lang="lua"> (number), (number), (bool) = ImGui:filledSliderInt2(label, mirrorFlag, value1, value2, [min=0, max=0, formatString="%d", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''mirrorFlag''': (bool) whether to mirror the slider or not<br/> '''valu...")
- 01:36, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:filledSliderInt4 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays four regular filled int sliders side by side. <syntaxhighlight lang="lua"> (number), (number), (number), (number), (bool) = ImGui:filledSliderInt4(label, mirrorFlag, value1, value2, value3, value4, [min=0, max=0, formatString="%d", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''mirrorFlag''': (bool) whether to...")
- 01:36, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:filledSliderInt3 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays three regular filled int sliders side by side. <syntaxhighlight lang="lua"> (number), (number), (number), (bool) = ImGui:filledSliderInt3(label, mirrorFlag, value1, value2, value3, [min=0, max=0, formatString="%d", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''mirrorFlag''': (bool) whether to mirror the slider...")
- 01:36, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:getStyle (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Accesses the current Style structure (colors, sizes). <syntaxhighlight lang="lua"> (style) = ImGui:getStyle() </syntaxhighlight> Always use pushStyleColor(), pushStyleVar() to modify style mid-frame! === Return values === '''Returns''' (style) the ImGui current style<br/> === Example === <syntaxhighlight lang="lua"> local ui = ImGui.new() local style = ui:getStyle() </synta...")
- 01:36, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputFloat (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets an input float field with a plus and a minus button when step is different than 0. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:inputFloat(label, value, [step=0, step_fast=0, format="%.3f", ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value''': (number) the value to be displayed<br/> '''step''': (number) th...")
- 01:35, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputDouble (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets an input double field with a plus and a minus button when step is different than 0. <syntaxhighlight lang="lua"> (number), (bool) = ImGui:inputDouble(label, value, [step=0, step_fast=0, format="%.6f", ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value''': (number) the value to be displayed<br/> '''step''': (number...")
- 01:35, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputInt2 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets two input int fields side by side (no plus/minus buttons). <syntaxhighlight lang="lua"> (number), (number), (bool) = ImGui:inputInt2(label, value1, value2, [ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the first value to be displayed<br/> '''value2''': (number) the second value to be displayed<br...")
- 01:35, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:inputText (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets an input text field. <syntaxhighlight lang="lua"> (string), (bool) = ImGui:inputText(label, text, bufferSize, [ImGuiInputTextFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''text''': (string) the text to be displayed<br/> '''bufferSize''': (number) sets a buffer size<br/> '''ImGuiInputTextFlags ''': (number) one of '''ImGui.CONST.I...")
- 01:35, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:labelText (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets some labelled text to be displayed. <syntaxhighlight lang="lua"> ImGui:labelText(text, label) </syntaxhighlight> === Parameters === '''text''': (string) the text to be displayed<br/> '''label''': (string) the label to be displayed<br/> === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() self.imgui = ImGui.new() -- we creat...")
- 01:35, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:progressBar (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays a progress bar. <syntaxhighlight lang="lua"> ImGui:progressBar(fraction,anchorx,anchory,overlaystring) </syntaxhighlight> === Parameters === '''fraction''': (number) the progress, between 0 and 1<br/> '''anchorx''': (number) the anchor x (or the progress bar width) '''optional'''<br/> '''anchory''': (number) the anchor y (or the progress bar height) '''optional'''<br/...")