-
Notifications
You must be signed in to change notification settings - Fork 911
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ImGuizmo::IsOver() returns 'true' when hovering in certain locations around the gizmo #132
Comments
I'm also getting some weirdness with the central white dot (and near the red axis) when the gizmo isn't visible: This shouldn't return true if the gizmo isn't drawn. if (isGuiGizmoVisible)
{
ImGuizmo::Manipulate(...);
} Here Maybe it's a different bug? Eh... I'm mentioning it here as a comment because they seem related. |
That's interesting. Let me check that :) |
@AndreiDespinoiu Do you have a call to viewManipulate ? |
@CedricGuillemet No. Just the gizmo ( |
@AndreiDespinoiu Can you please try to replicate the issue in the sample? You'll need to comment the line to viewManipulate because this call interfers with view/projection matrix (I'll fix that soon) |
Yes, it happens in the sample as well. Add this line: std::cout << "Result is: " << std::boolalpha << ImGuizmo::IsOver() << '\n'; before creating the sequencer, so that means at line 565 from Obviously, you need this header at the top: #include <iostream> It doesn't matter if you comment out the |
I'm trying again to repro ... and I get the same as you. I'm investigating now :) |
I just pushed to main branch and it should be fixed. Let me know if it works for you...or not ! |
All right! This is awesome. It's fixed. Thank you so much! Now about the white dot in the middle that I showed in the second gif... I submitted it as a separate issue, which I hope you'll take a look at: #133. Thank you! |
Steps to reproduce:
The following occurs:
The
IsOver()
function returnstrue
, regardless if the mode is set to world space or local space, and regardless if the transform operation is set to translation or scaling.Note: Also occurs while in rotation mode, on the inside of the gizmo, as if it's hitting the backside of the control circles.
Expected result:
It should return
true
only if actual elements from the gizmo are hovered.Additional information:
Dear ImGui 1.78
OpenGL 3.3
GLFW 3.3.2
Windows 10 (64-bit) build 1903
The text was updated successfully, but these errors were encountered: