Kodit izke
-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
int x = 150;
int y = 20;
ImGui::Begin("Spectators", &enabled, ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoTitleBar);
{
auto cur_window = ImGui::GetCurrentWindow();
int y_new = 0;
ImVec2 size = cur_window->Size;
ImVec2 pos = cur_window->Pos;
cur_window->DrawList->AddRectFilled(ImVec2(pos.x, pos.y), ImVec2(pos.x + size.x, pos.y + y), ImColor(12, 12, 12, 210), 5);
for (auto i = 0; i < spectators.size(); i++)
{
y_new = i * 16;
}
ImGui::SetWindowSize(ImVec2(x, y + y_new));
}
ImGui::End();
int y = 20;
ImGui::Begin("Spectators", &enabled, ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoTitleBar);
{
auto cur_window = ImGui::GetCurrentWindow();
int y_new = 0;
ImVec2 size = cur_window->Size;
ImVec2 pos = cur_window->Pos;
cur_window->DrawList->AddRectFilled(ImVec2(pos.x, pos.y), ImVec2(pos.x + size.x, pos.y + y), ImColor(12, 12, 12, 210), 5);
for (auto i = 0; i < spectators.size(); i++)
{
y_new = i * 16;
}
ImGui::SetWindowSize(ImVec2(x, y + y_new));
}
ImGui::End();