- Версия MoonLoader
- .026-beta
Lua:
local buffer = imgui.ImBuffer('',256)
local showing = false
-- imgui.OnDrawFrame()
-- твое окно
if imgui.Button('Click on me!') then showing = not showing end
if showing then imgui.InputText('InputText',buffer)
if showing and wasKeyPressed(VK_RETURN) then sampAddChatMessage("Текст: " .. u8:decode(buffer.v), -1) end
Как сделать так чтобы после нажатия enter закрывалась окно imgui.InputText