ImGUI
GUI library
Variables
begin(title, flags)
begin(title, flags)-- Example code showing how to use the function
local window_flags = imgui.constants.WindowFlags_NoResize
registerImGuiRenderEvent(function()
if imgui.begin("Test", window_flags) then
end
imgui.endBegin()
end)endBegin()
endBegin()text(text)
text(text)textDisabled(text)
textDisabled(text)textColored(red, green, blue, text)
textColored(red, green, blue, text)bulletText(text)
bulletText(text)checkbox(text, state)
checkbox(text, state)inputText(text, buffer)
inputText(text, buffer)inputText(text, buffer, wight, height)
inputText(text, buffer, wight, height)inputInt(text, int_value, step, step_fast)
inputInt(text, int_value, step, step_fast)inputFloat(text, float_value, step, step_fast, format)
inputFloat(text, float_value, step, step_fast, format)listBox(text, current_item, items)
listBox(text, current_item, items)button(text, width, height)
button(text, width, height)smallButton(text)
smallButton(text)arrowButton(id, direction)
arrowButton(id, direction)sameLine(offset, spacing)
sameLine(offset, spacing)image(id, wigth, height, uv0X, uv0Y, uv1X, uv1Y)
image(id, wigth, height, uv0X, uv0Y, uv1X, uv1Y)Last updated