- 260
- 26
- Версия MoonLoader
- .026-beta
что делать если на разрешении 1366 x 768 имгуи окно уходит вниз а на 1680 x 1050 все норм
первое фото 1366 x 768, второе 1680 x 1050
текст начала imgui окна:
первое фото 1366 x 768, второе 1680 x 1050
текст начала imgui окна:
Lua:
if ReconWindow.v then
local ex, ey = getScreenResolution()
local x, y = ToScreen(552, 240)
local w, h = ToScreen(638, 330)
if isKeyJustPressed(VK_RBUTTON) and not sampIsChatInputActive() and not sampIsDialogActive() then
imgui.ShowCursor = not imgui.ShowCursor
end
local ex, ey = getScreenResolution()
imgui.SetNextWindowPos(imgui.ImVec2(600, 960), imgui.Cond.FirstUseEver)
imgui.SetNextWindowSize(imgui.ImVec2(0, 0), imgui.Cond.FirstUseEver)
imgui.Begin("", _, imgui.WindowFlags.NoResize + imgui.WindowFlags.NoMove + imgui.WindowFlags.NoTitleBar)
imgui.SetCursorPosX((imgui.GetWindowWidth() - imgui.CalcTextSize(u8"UPDATE").x) / 2.26)
if imgui.Button(u8'UPDATE', imgui.ImVec2(100,0)) then
sampSendChat("/re "..spec_id)
end
if imgui.Button(u8'STATS', imgui.ImVec2(100,0)) then
sampSendChat("/getstats " ..spec_id)
end