ImGuizmo
ImGuizmo copied to clipboard
Missing #include <imgui.h> in ImGuizmo.h
ViewManipulate
is using ImVec2
(https://github.com/CedricGuillemet/ImGuizmo/blob/master/ImGuizmo.h#L179) which is defined in imgui.h
, but that is not included anywhere in ImGuizmo.h
. This can cause a compile error.
This can be fixed by adding #include <imgui.h>
at the top of ImGuizmo.h
(line 45ish, before the example).