Гайд Табы слева в индиго

Забаненный
Статус
Оффлайн
Регистрация
4 Июн 2017
Сообщения
601
Реакции[?]
47
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Пользователь
Статус
Оффлайн
Регистрация
16 Янв 2017
Сообщения
334
Реакции[?]
109
Поинты[?]
42K
ImGui::BeginGroup() и ImGui::EndGroup() прописаны не в тех местах
как у тебя на скрине, перед началом и в конце
допустим

if ( tabSelected == 0 )
{
ImGui::BeginGroup();
ImGui::PushItemWidth( 110.f );
*код*
ImGui::Spacing();
ImGui::EndGroup();
}
}
else if ( tabSelected == 1 )
{
ImGui::BeginGroup();
const char* TriggerEnable[] = { "Disable" , "Fov" , "Trace" };
*код*
ImGui::Spacing();
ImGui::EndGroup();
}

и т.д.
 
Забаненный
Статус
Оффлайн
Регистрация
4 Июн 2017
Сообщения
601
Реакции[?]
47
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Пользователь
Статус
Оффлайн
Регистрация
25 Июл 2017
Сообщения
135
Реакции[?]
56
Поинты[?]
0
как у тебя на скрине, перед началом и в конце
допустим

if ( tabSelected == 0 )
{
ImGui::BeginGroup();
ImGui::PushItemWidth( 110.f );
*код*
ImGui::Spacing();
ImGui::EndGroup();
}
}
else if ( tabSelected == 1 )
{
ImGui::BeginGroup();
const char* TriggerEnable[] = { "Disable" , "Fov" , "Trace" };
*код*
ImGui::Spacing();
ImGui::EndGroup();
}

и т.д.
мб так

 
теперь когда открываю меню. игра вылетает :forsenGun::FeelsBadMan:
Блэт ну хз :FeelsBadMan:
 
Забаненный
Статус
Оффлайн
Регистрация
4 Июн 2017
Сообщения
601
Реакции[?]
47
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Забаненный
Статус
Оффлайн
Регистрация
21 Май 2017
Сообщения
69
Реакции[?]
5
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
ля, ребят, кто сделал всё ок скиньте сурсы пожалуйста, в лс, пиздец нихуя не работает
 
Забаненный
Статус
Оффлайн
Регистрация
4 Июн 2017
Сообщения
601
Реакции[?]
47
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Пользователь
Статус
Оффлайн
Регистрация
16 Янв 2017
Сообщения
334
Реакции[?]
109
Поинты[?]
42K
Пользователь
Статус
Оффлайн
Регистрация
16 Янв 2017
Сообщения
334
Реакции[?]
109
Поинты[?]
42K
Где взять такой gui? это паблик? или сам делал?
style.Colors[ImGuiCol_Text] = ImVec4( 0.80f, 0.80f, 0.83f, 1.00f );
style.Colors[ImGuiCol_TextDisabled] = ImVec4( 0.24f, 0.23f, 0.29f, 1.00f );
style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.06f, 0.05f, 0.07f, 1.00f );
style.Colors[ImGuiCol_ChildWindowBg] = ImVec4( 0.07f, 0.07f, 0.09f, 1.00f );
style.Colors[ImGuiCol_PopupBg] = ImVec4( 0.07f, 0.07f, 0.09f, 1.00f );
style.Colors[ImGuiCol_Border] = ImVec4( 0.80f, 0.80f, 0.83f, 0.88f );
style.Colors[ImGuiCol_BorderShadow] = ImVec4( 0.92f, 0.91f, 0.88f, 0.00f );
style.Colors[ImGuiCol_FrameBg] = ImVec4( 0.10f, 0.09f, 0.12f, 1.00f );
style.Colors[ImGuiCol_FrameBgHovered] = ImVec4( 0.24f, 0.23f, 0.29f, 1.00f );
style.Colors[ImGuiCol_FrameBgActive] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_TitleBg] = ImVec4( 0.10f, 0.09f, 0.12f, 1.00f );
style.Colors[ImGuiCol_TitleBgCollapsed] = ImVec4( 1.00f, 0.98f, 0.95f, 0.75f );
style.Colors[ImGuiCol_TitleBgActive] = ImVec4( 0.07f, 0.07f, 0.09f, 1.00f );
style.Colors[ImGuiCol_MenuBarBg] = ImVec4( 0.10f, 0.09f, 0.12f, 1.00f );
style.Colors[ImGuiCol_ScrollbarBg] = ImVec4( 0.10f, 0.09f, 0.12f, 1.00f );
style.Colors[ImGuiCol_ScrollbarGrab] = ImVec4( 0.80f, 0.80f, 0.83f, 0.31f );
style.Colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_ScrollbarGrabActive] = ImVec4( 0.06f, 0.05f, 0.07f, 1.00f );
style.Colors[ImGuiCol_ComboBg] = ImVec4( 0.19f, 0.18f, 0.21f, 1.00f );
style.Colors[ImGuiCol_CheckMark] = ImVec4( 0.80f, 0.80f, 0.83f, 0.31f );
style.Colors[ImGuiCol_SliderGrab] = ImVec4( 0.80f, 0.80f, 0.83f, 0.31f );
style.Colors[ImGuiCol_SliderGrabActive] = ImVec4( 0.06f, 0.05f, 0.07f, 1.00f );
style.Colors[ImGuiCol_Button] = ImVec4( 0.10f, 0.09f, 0.12f, 1.00f );
style.Colors[ImGuiCol_ButtonHovered] = ImVec4( 0.24f, 0.23f, 0.29f, 1.00f );
style.Colors[ImGuiCol_ButtonActive] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_Header] = ImVec4( 0.10f, 0.09f, 0.12f, 1.00f );
style.Colors[ImGuiCol_HeaderHovered] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_HeaderActive] = ImVec4( 0.06f, 0.05f, 0.07f, 1.00f );
style.Colors[ImGuiCol_Column] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_ColumnHovered] = ImVec4( 0.24f, 0.23f, 0.29f, 1.00f );
style.Colors[ImGuiCol_ColumnActive] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_ResizeGrip] = ImVec4( 0.00f, 0.00f, 0.00f, 0.00f );
style.Colors[ImGuiCol_ResizeGripHovered] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_ResizeGripActive] = ImVec4( 0.06f, 0.05f, 0.07f, 1.00f );
style.Colors[ImGuiCol_CloseButton] = ImVec4( 0.40f, 0.39f, 0.38f, 0.16f );
style.Colors[ImGuiCol_CloseButtonHovered] = ImVec4( 0.40f, 0.39f, 0.38f, 0.39f );
style.Colors[ImGuiCol_CloseButtonActive] = ImVec4( 0.40f, 0.39f, 0.38f, 1.00f );
style.Colors[ImGuiCol_PlotLines] = ImVec4( 0.40f, 0.39f, 0.38f, 0.63f );
style.Colors[ImGuiCol_PlotLinesHovered] = ImVec4( 0.25f, 1.00f, 0.00f, 1.00f );
style.Colors[ImGuiCol_PlotHistogram] = ImVec4( 0.40f, 0.39f, 0.38f, 0.63f );
style.Colors[ImGuiCol_PlotHistogramHovered] = ImVec4( 0.25f, 1.00f, 0.00f, 1.00f );
style.Colors[ImGuiCol_TextSelectedBg] = ImVec4( 0.25f, 1.00f, 0.00f, 0.43f );
style.Colors[ImGuiCol_ModalWindowDarkening] = ImVec4( 1.00f, 0.98f, 0.95f, 0.73f );
 
Забаненный
Статус
Оффлайн
Регистрация
21 Май 2017
Сообщения
69
Реакции[?]
5
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
style.Colors[ImGuiCol_Text] = ImVec4( 0.80f, 0.80f, 0.83f, 1.00f );
style.Colors[ImGuiCol_TextDisabled] = ImVec4( 0.24f, 0.23f, 0.29f, 1.00f );
style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.06f, 0.05f, 0.07f, 1.00f );
style.Colors[ImGuiCol_ChildWindowBg] = ImVec4( 0.07f, 0.07f, 0.09f, 1.00f );
style.Colors[ImGuiCol_PopupBg] = ImVec4( 0.07f, 0.07f, 0.09f, 1.00f );
style.Colors[ImGuiCol_Border] = ImVec4( 0.80f, 0.80f, 0.83f, 0.88f );
style.Colors[ImGuiCol_BorderShadow] = ImVec4( 0.92f, 0.91f, 0.88f, 0.00f );
style.Colors[ImGuiCol_FrameBg] = ImVec4( 0.10f, 0.09f, 0.12f, 1.00f );
style.Colors[ImGuiCol_FrameBgHovered] = ImVec4( 0.24f, 0.23f, 0.29f, 1.00f );
style.Colors[ImGuiCol_FrameBgActive] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_TitleBg] = ImVec4( 0.10f, 0.09f, 0.12f, 1.00f );
style.Colors[ImGuiCol_TitleBgCollapsed] = ImVec4( 1.00f, 0.98f, 0.95f, 0.75f );
style.Colors[ImGuiCol_TitleBgActive] = ImVec4( 0.07f, 0.07f, 0.09f, 1.00f );
style.Colors[ImGuiCol_MenuBarBg] = ImVec4( 0.10f, 0.09f, 0.12f, 1.00f );
style.Colors[ImGuiCol_ScrollbarBg] = ImVec4( 0.10f, 0.09f, 0.12f, 1.00f );
style.Colors[ImGuiCol_ScrollbarGrab] = ImVec4( 0.80f, 0.80f, 0.83f, 0.31f );
style.Colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_ScrollbarGrabActive] = ImVec4( 0.06f, 0.05f, 0.07f, 1.00f );
style.Colors[ImGuiCol_ComboBg] = ImVec4( 0.19f, 0.18f, 0.21f, 1.00f );
style.Colors[ImGuiCol_CheckMark] = ImVec4( 0.80f, 0.80f, 0.83f, 0.31f );
style.Colors[ImGuiCol_SliderGrab] = ImVec4( 0.80f, 0.80f, 0.83f, 0.31f );
style.Colors[ImGuiCol_SliderGrabActive] = ImVec4( 0.06f, 0.05f, 0.07f, 1.00f );
style.Colors[ImGuiCol_Button] = ImVec4( 0.10f, 0.09f, 0.12f, 1.00f );
style.Colors[ImGuiCol_ButtonHovered] = ImVec4( 0.24f, 0.23f, 0.29f, 1.00f );
style.Colors[ImGuiCol_ButtonActive] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_Header] = ImVec4( 0.10f, 0.09f, 0.12f, 1.00f );
style.Colors[ImGuiCol_HeaderHovered] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_HeaderActive] = ImVec4( 0.06f, 0.05f, 0.07f, 1.00f );
style.Colors[ImGuiCol_Column] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_ColumnHovered] = ImVec4( 0.24f, 0.23f, 0.29f, 1.00f );
style.Colors[ImGuiCol_ColumnActive] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_ResizeGrip] = ImVec4( 0.00f, 0.00f, 0.00f, 0.00f );
style.Colors[ImGuiCol_ResizeGripHovered] = ImVec4( 0.56f, 0.56f, 0.58f, 1.00f );
style.Colors[ImGuiCol_ResizeGripActive] = ImVec4( 0.06f, 0.05f, 0.07f, 1.00f );
style.Colors[ImGuiCol_CloseButton] = ImVec4( 0.40f, 0.39f, 0.38f, 0.16f );
style.Colors[ImGuiCol_CloseButtonHovered] = ImVec4( 0.40f, 0.39f, 0.38f, 0.39f );
style.Colors[ImGuiCol_CloseButtonActive] = ImVec4( 0.40f, 0.39f, 0.38f, 1.00f );
style.Colors[ImGuiCol_PlotLines] = ImVec4( 0.40f, 0.39f, 0.38f, 0.63f );
style.Colors[ImGuiCol_PlotLinesHovered] = ImVec4( 0.25f, 1.00f, 0.00f, 1.00f );
style.Colors[ImGuiCol_PlotHistogram] = ImVec4( 0.40f, 0.39f, 0.38f, 0.63f );
style.Colors[ImGuiCol_PlotHistogramHovered] = ImVec4( 0.25f, 1.00f, 0.00f, 1.00f );
style.Colors[ImGuiCol_TextSelectedBg] = ImVec4( 0.25f, 1.00f, 0.00f, 0.43f );
style.Colors[ImGuiCol_ModalWindowDarkening] = ImVec4( 1.00f, 0.98f, 0.95f, 0.73f );
Братан, дай сурсы в лс плеаз
 
Сверху Снизу