File size: 2,991 Bytes
c801d2e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
script_name 'mimgui basic example'
local imgui = require 'mimgui'
local new = imgui.new
local vk = require 'vkeys'
local imgui_example = {
show = false,
show_demo_window = new.bool(),
show_another_window = new.bool(),
f = new.float(0.0),
counter = new.int(0),
clear_color = new.float[3](0.45, 0.55, 0.60)
}
imgui.OnFrame(function() return imgui_example.show end,
function()
-- 1. Покажите большое демонстрационное окно (Большая часть кода примера находится в imgui.ShowDemoWindow()! Вы можете просмотреть его код, чтобы узнать больше о Dear ImGui!)
if imgui_example.show_demo_window[0] then
imgui.ShowDemoWindow(imgui_example.show_demo_window)
end
-- 2. Покажите простое окно, которое мы создаем сами. Мы используем пару Begin/End для создания именованного окна.
imgui.Begin("Hello, world!") -- Create a window called "Hello, world!" and append into it.
imgui.Text("This is some useful text.") -- Выведите на экран текст (можно также использовать строки форматирования)
imgui.Checkbox("Demo Window", imgui_example.show_demo_window) -- Редактируйте переменные, хранящие состояние открытия/закрытия нашего окна
imgui.Checkbox("Another Window", imgui_example.show_another_window)
imgui.SliderFloat("float", imgui_example.f, 0.0, 1.0) -- Редактирование 1 поплавка с помощью ползунка от 0,0 до 1,0
imgui.ColorEdit3("clear color", imgui_example.clear_color) -- Редактирование 3 плавающих точек, представляющих цвет
if imgui.Button("Button") then -- Кнопки возвращают true при нажатии (большинство виджетов возвращают true при редактировании/активации)
imgui_example.counter[0] = imgui_example.counter[0] + 1
end
imgui.SameLine()
imgui.Text("counter = %g", imgui_example.counter[0])
imgui.Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0 / imgui.GetIO().Framerate, imgui.GetIO().Framerate)
imgui.End()
-- 3. Show another simple window.
if imgui_example.show_another_window[0] then
imgui.Begin("Another Window", imgui_example.show_another_window) -- Передайте указатель на нашу переменную bool (в окне будет кнопка закрытия, при нажатии на которую bool будет очищаться).
imgui.Text("Hello from another window!")
if imgui.Button("Close Me") then
imgui_example.show_another_window[0] = false
end
imgui.End()
end
end)
function main()
while true do
wait(20)
if wasKeyPressed(vk.VK_1) then
imgui_example.show = not imgui_example.show
end
end
end |