相亲相爱-资源分享 【千恋大王】
Ir al canal en Telegram
This Channel follows Telegram Terms.No adult content, no violence, no spam.
Mostrar másChina50 051La categoría no está especificada
1 832
Suscriptores
-224 horas
-167 días
-2930 días
Archivo de publicaciones
1 832
窗口技术
void RenderSingleMenuWindow() {
ImGui::SetNextWindowSize(ImVec2(950, 600), ImGuiCond_Always);
ImGui::PushStyleColor(ImGuiCol_WindowBg, IM_COL32(255, 255, 255, 230));
ImGui::PushStyleColor(ImGuiCol_Border, IM_COL32(220, 220, 220, 200));
ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, 25.0f);
if (ImGui::Begin("SingleMenuWindow", nullptr, ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse)) {
//这个里面就是窗口内容
}
ImGui::End();
ImGui::PopStyleVar();
ImGui::PopStyleColor(2);
}