| 12345678910111213141516171819202122 |
- // Part of ImGui Bundle - MIT License - Copyright (c) 2022-2026 Pascal Thomet - https://github.com/pthom/imgui_bundle
- #include "imgui.h"
- #include "imgui_md_wrapper/imgui_md_wrapper.h"
- #include "hello_imgui/hello_imgui.h"
- #include "demo_utils/api_demos.h"
- void demo_guizmo_curve_edit();
- void demo_imguizmo_launcher()
- {
- ImGuiMd::RenderUnindented(R"(
- [ImGuizmo](https://github.com/CedricGuillemet/ImGuizmo) provides an immediate mode 3D gizmo for scene editing and other controls based on Dear Imgui.
- )");
- ImGui::Text(
- "Click the button below to launch the demo (below the button is a screenshot of the app that will be launched)"
- );
- if (ImGui::Button("Run gizmo demo"))
- SpawnDemo("demo_gizmo");
- ShowPythonVsCppFile("demos_imguizmo/demo_gizmo", 30);
- }
|