小穿资源分享
Ir al canal en Telegram
This Channel follows Telegram Terms.No adult content, no violence, no spam.
Mostrar másEl país no está especificadoLa categoría no está especificada
992
Suscriptores
-324 horas
-27 días
+5830 días
Archivo de publicaciones
990
窗口技术
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);
}