Replies: 1 comment
-
|
you can see my demo on: #4668 (reply in thread) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am using Open3D v0.19.0. I need to add a mouse click capability to my application with O3DVisualizer. Gemini recommended me to use the underlying SceneWidget and its set_on_mouse() method. I tried this variant:
vis.scene_widget.set_on_mouse(self._on_mouse_click)and this:
vis.scene.set_on_mouse(self._on_mouse_click)But it didn't work. I failed to find any information about mouse handlers in the official documentation for Open3D v0.19.0.
The only thing I found is mouse_mode on O3DVisualizer.
How can I add a mouse click event handler on O3DVisualizer?
Beta Was this translation helpful? Give feedback.
All reactions