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: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/...")
  • 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...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)