Deletion log

From GiderosMobile

Below is a list of the most recent deletions.

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 01:35, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:scaledImage (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. <syntaxhighlight lang="lua"> ImGui:scaledImage(texture,w,h,color,alpha,bordercolor,borderalpha,anchorx,anchory) </syntaxhighlight> === Parameters === '''texture''': (texture) the image texture<br/> '''w''': (number) the image width<br/> '''h''': (number) the image height<br/> '''color''': (number) the image...")
  • 01:35, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:scaledImageButton (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an image button scaled to fit space while keeping its aspect ratio. <syntaxhighlight lang="lua"> ImGui:scaledImageButton(texture,w,h,padding,color,alpha,bgcolor,bgalpha,anchorx,anchory) </syntaxhighlight> === Parameters === '''texture''': (texture) the image texture<br/> '''w''': (number) the image width<br/> '''h''': (number) the image height<br/> '''padding''': (num...")
  • 01:35, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:scaledImageButtonWithText (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an image button scaled to fit space while keeping its aspect ratio along with some text. <syntaxhighlight lang="lua"> ImGui:scaledImageButtonWithText(texture,text,w,h,padding,bgcolor,bgalpha,color,alpha,anchorx,anchory) </syntaxhighlight> === Parameters === '''texture''': (texture) the image texture<br/> '''text''': (string) the button text<br/> '''w''': (number) the...")
  • 01:35, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:showStyleEditor (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Adds a style editor block (not a window). <syntaxhighlight lang="lua"> ImGui:showStyleEditor() </syntaxhighlight> You can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style). === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() self.imgui = ImGui.new() self:addChild(self...")
  • 01:34, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:showUserGuide (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Adds a basic help/info block (not a window): how to manipulate ImGui as a end-user (mouse/keyboard controls). <syntaxhighlight lang="lua"> ImGui:showUserGuide() </syntaxhighlight> === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() self.imgui = ImGui.new() self:addChild(self.imgui) -- LISTENERS self:addEventListener("enterBegi...")
  • 01:34, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:setClassicStyle (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets a classic color style. <syntaxhighlight lang="lua"> ImGui:setClassicStyle() </syntaxhighlight> === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() self.imgui = ImGui.new() self:addChild(self.imgui) self.imgui:setClassicStyle() -- LISTENERS self:addEventListener("enterBegin", self.onTransitionInBegin, self) end -- LOOP f...")
  • 01:34, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:setColorEditOptions (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets the color edit options flag (when you right click on a color widget). <syntaxhighlight lang="lua"> ImGui:setColorEditOptions(ImGuiColorEditFlags) </syntaxhighlight> === Parameters === '''ImGuiColorEditFlags''': (number) one of ImGui '''color edit flags'''<br/> === Example === <syntaxhighlight lang="lua"> require "ImGui" local imgui = ImGui...")
  • 01:34, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:setDarkStyle (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets a dark color style. <syntaxhighlight lang="lua"> ImGui:setDarkStyle() </syntaxhighlight> === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() self.imgui = ImGui.new() self:addChild(self.imgui) self.imgui:setDarkStyle() -- LISTENERS self:addEventListener("enterBegin", self.onTransitionInBegin, self) end -- LOOP function M...")
  • 01:34, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:setLightStyle (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets a light color style. <syntaxhighlight lang="lua"> ImGui:setLightStyle() </syntaxhighlight> Best used with borders and a custom, thicker font. === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() self.imgui = ImGui.new() self:addChild(self.imgui) self.imgui:setLightStyle() -- LISTENERS self:addEventListener("enterBegin",...")
  • 01:34, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:setNextWindowPos (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets the position of the next window in the windows list. The window will remain at the desired position. <syntaxhighlight lang="lua"> ImGui:setNextWindowPos(x,y) </syntaxhighlight> === Parameters === '''x''': (number) the next window x position<br/> '''y''': (number) the nex...", and the only contributor was "MoKaLux" (talk))
  • 01:34, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:setNextWindowSize (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets the desired size of the next window in the windows list. When set, the window can shrink and stretch but will eventually resize to the desired window size values. <syntaxhighlight lang="lua"> ImGui:setNextWindowSize(w,h) </syntaxhighlight> === Parameters === '''w''': (nu...", and the only contributor was "MoKaLux" (talk))
  • 01:33, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:setNextWindowSizeConstraints (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Sets the desired constrained sizes of the next window in the windows list. <syntaxhighlight lang="lua"> ImGui:setNextWindowSizeConstraints(min_w,min_h,max_w,max_h [,resize_callback,user_data]) </syntaxhighlight> ''resize_callback'' holds the following values: <syntaxhighlight...", and the only contributor was "MoKaLux" (talk))
  • 01:33, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:showAboutWindow (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Creates an ImGui About window, displaying Dear ImGui version, credits and build/system information. <syntaxhighlight lang="lua"> ImGui:showAboutWindow(bool) </syntaxhighlight> === Parameters === '''bool''': (boolean) whether or not to show the window<br/> === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() self.imgui = ImGui.new...")
  • 01:33, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:showDemoWindow (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an ImGui demo window. <syntaxhighlight lang="lua"> ImGui:showDemoWindow(bool) </syntaxhighlight> === Parameters === '''bool''': (boolean) whether or not to show the window<br/> === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() self.imgui = ImGui.new() self:addChild(self.imgui) -- LISTENERS self:addEventListener("en...")
  • 01:33, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:showFontSelector (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Adds a style selector block (not a window), essentially a combo listing the default styles. <syntaxhighlight lang="lua"> ImGui:showFontSelector(fontselector) </syntaxhighlight> ''fontselector'' can be any of the following: *ImGui.*** === Parameters === '''fontselector''': (string) any of the above selector<br/> === Example === <syntaxhighlight lang="lua"> </syntaxhighlight>...")
  • 01:33, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:showMetricsWindow (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an ImGui metrics window. <syntaxhighlight lang="lua"> ImGui:showMetricsWindow() </syntaxhighlight> === Example === <syntaxhighlight lang="lua"> MyClass = Core.class(Sprite) function MyClass:init() self.imgui = ImGui.new() self:addChild(self.imgui) -- LISTENERS self:addEventListener("enterBegin", self.onTransitionInBegin, self) end -- LOOP function MyClass:onEnte...")
  • 01:33, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:showStyleSelector (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Adds a style selector block (not a window), essentially a combo listing the default styles. <syntaxhighlight lang="lua"> ImGui:showStyleSelector(styleselector) </syntaxhighlight> ''styleselector'' can be any of the following: *ImGui.StyleVar_GrabRounding *ImGui.StyleVar_Alpha *ImGui.StyleVar_WindowMinSize *ImGui.StyleVar_PopupBorderSize *ImGui.StyleVar_WindowBorderSize *ImGui....")
  • 01:33, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:sliderFloat2 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 2 regular float sliders side by side. <syntaxhighlight lang="lua"> (number), (number), (bool) = ImGui:sliderFloat2(label, value1, value2, [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 current second valu...")
  • 01:33, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:sliderInt2 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 2 regular int sliders side by side. <syntaxhighlight lang="lua"> (number), (number), (bool) = ImGui:sliderInt2(label, value1, value2, [min=0, max=0, formatString="%d", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the current first value<br/> '''value2''': (number) the current second value<br/>...")
  • 01:33, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:sliderInt3 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 3 regular int sliders side by side. <syntaxhighlight lang="lua"> (number), (number), (number), (bool) = ImGui:sliderInt3(label, value1, value2, value3, [min=0, max=0, formatString="%d", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the current first value<br/> '''value2''': (number) the current...")
  • 01:32, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Core:sliderInt4 (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays 4 regular int sliders side by side. <syntaxhighlight lang="lua"> (number), (number), (number), (number), (bool) = ImGui:sliderInt4(label, value1, value2, value3, value4, [min=0, max=0, formatString="%d", ImGuiSliderFlags=0]) </syntaxhighlight> === Parameters === '''label''': (string) the label<br/> '''value1''': (number) the current first value<br/> '''value2'''...")
  • 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))
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)