- 59
- 2
- Версия MoonLoader
- Другое
как установить фиксированный размер всплывающего окна
с помощью мимгуи
с помощью мимгуи
Lua:
if imgui.Button('Criar Objetos', size) then imgui.OpenPopup('CriarObejetos') end
if imgui.BeginPopupModal('CriarObejetos') then
imgui.SetNextWindowSize(imgui.ImVec2(150, 150), imgui.Cond.FirstUseEver)
if imgui.Button('Fechar', imgui.ImVec2(97, 20)) then imgui.CloseCurrentPopup() end
imgui.EndPopup()
end