Шаг 1
Заходим в menu.cpp.
Шаг 2
Открываем menu.cpp
Шаг 3
Находим void RenderEspTab() и ищем в нём это:
ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0, 0));
{
render_tabs(esp_tab_names, active_esp_tab, group_w / _countof(esp_tab_names), 25.0f, true);
}
ImGui::PopStyleVar();
ImGui::BeginGroupBox("##body_content");
{
if(active_esp_tab == 0) {
ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2{ style.WindowPadding.x, style.ItemSpacing.y });
ImGui::Columns(3, nullptr, false);
ImGui::SetColumnOffset(1, group_w / 3.0f);
ImGui::SetColumnOffset(2, 2 * group_w / 3.0f);
ImGui::SetColumnOffset(3, group_w);
Заменяем на:
ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0, 0));
{
render_tabs(esp_tab_names, active_esp_tab, group_w / _countof(esp_tab_names), 30.0f, true);
}
ImGui::PopStyleVar();
ImGui::BeginGroupBox("##body_content");
{
if(active_esp_tab == 0) {
ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2{ style.WindowPadding.x, style.ItemSpacing.y });
ImGui::Columns(3, nullptr, false);
ImGui::SetColumnOffset(1, group_w / 4.5f); //Можешь поиграться с этими значениями, чтобы настроить получше
ImGui::SetColumnOffset(2, 2 * group_w / 3.7f); //Можешь поиграться с этими значениями, чтобы настроить получше
ImGui::SetColumnOffset(3, group_w);
Шаг 4
Находим void Menu::Render() и ищем в нём это:
ImGui::SetNextWindowPos(ImVec2{ 0, 0 }, ImGuiSetCond_Once);
ImGui::SetNextWindowSize(ImVec2{ 1000, 400 }, ImGuiSetCond_Once);
Заменяем на
ImGui::SetNextWindowPos(ImVec2{ 0, 0 }, ImGuiSetCond_Once);
ImGui::SetNextWindowSize(ImVec2{ 720, 400 }, ImGuiSetCond_Once);
Готово