- 83
- 6
При нажатии кнопки текст должен появлятся на всё меню а не с право от кнопки.
Код:
Код:
Lua:
local sw, sh = getScreenResolution()
function imgui.OnDrawFrame()
imgui.SetNextWindowPos(imgui.ImVec2(sw / 2, sh / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
imgui.SetNextWindowSize(imgui.ImVec2(1000, 600), imgui.Cond.FirstUseEver)
imgui.Begin(fa.ICON_FA_CROWN .. u8' Helper Arizona by Mixail Velance v 1.0', show_main_window, imgui.WindowFlags.NoCollapse)
if imgui.Button(fa.ICON_FA_BOOK_MEDICAL .. u8' Описание', (imgui.ImVec2(162, 100))) then
active = true
active1 = false
active2 = false
end
if imgui.Button(fa.ICON_FA_CUBES .. u8' ВаллХак', (imgui.ImVec2(162, 100))) then
active = false
active1 = true
active2 = false
active3 = false
active4 = false
end
if imgui.Button(fa.ICON_FA_CROSSHAIRS .. u8' АимБот', (imgui.ImVec2(162, 100))) then
active = false
active1 = false
active2 = true
active3 = false
active4 = false
end
if imgui.Button(fa.ICON_FA_CODE .. u8' Скрипты', (imgui.ImVec2(162, 100))) then
active = false
active1 = false
active2 = false
active3 = true
active4 = false
end
if imgui.Button(fa.ICON_FA_COMMENT_DOTS .. u8' Биндер', (imgui.ImVec2(162, 100))) then
active = false
active1 = false
active2 = false
active3 = false
active4 = true
end
if active then
imgui.SameLine()
imgui.SetCursorPosX((imgui.GetWindowWidth() - 5) / 5) --Указан центр
imgui.BeginChild('text', imgui.ImVec2(100 , 100))
imgui.Text('test')
imgui.EndChild()
end
if active1 then
imgui.SameLine()
imgui.SetCursorPosX((imgui.GetWindowWidth() - 5) / 5) --Указан центр
imgui.BeginChild('text1', imgui.ImVec2(100 , 100))
imgui.Text('test1')
imgui.EndChild()
end
if active2 then
imgui.SameLine()
imgui.SetCursorPosX((imgui.GetWindowWidth() - 5) / 5) --Указан центр
imgui.BeginChild('text2', imgui.ImVec2(100 , 100))
imgui.Text('test2')
imgui.EndChild()
end
if active3 then
imgui.SameLine()
imgui.SetCursorPosX((imgui.GetWindowWidth() - 5) / 5) --Указан центр
imgui.BeginChild('text3', imgui.ImVec2(100 , 100))
imgui.Text('test3')
imgui.EndChild()
end
if active4 then
imgui.SameLine()
imgui.SetCursorPosX((imgui.GetWindowWidth() - 5) / 5) --Указан центр
imgui.BeginChild('text4', imgui.ImVec2(100 , 100))
imgui.Text('test4')
imgui.EndChild()
end
imgui.End()
end
Последнее редактирование модератором: