- 156
- 16
- Версия MoonLoader
- .026-beta
Как сделать вывод о том стоит ли галочка или нет?
Lua:
test = imgui.ImBool(false)
function imgui.OnDrawFrame()
if main_window_state.v then
imgui.Begin('test', main_window_state)
if imgui.Checkbox('qwe', test) then
sampAddChatMessage(tostring(test), -1)
end
imgui.End()
end
end