Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
local ImBool = imgui.ImBool(false)
function imgui.OnDrawFrame()
if ImBool.v then
-- some code
end
end
function main()
sampRegisterChatCommand('myimgui', function()
ImBool.v = not ImBool.v
end)
while true do
wait(0)
imgui.Process = ImBool.v
end
end
local ImBool = imgui.ImBool(false)
function imgui.OnDrawFrame()
if ImBool.v then
-- some code
end
end
function main()
sampRegisterChatCommand('myimgui', function()
ImBool.v = not ImBool.v
end)
while true do
wait(0)
imgui.Process = ImBool.v
end
end