Hi,
I added ViewHelper to my scene. Is it possible to change the camera position when clicking on an axis, as in the editor?
Thanks,
TC
Hi,
I added ViewHelper to my scene. Is it possible to change the camera position when clicking on an axis, as in the editor?
Thanks,
TC
Have you tried this plugin
Here is the enhanced fiddle from Implementing viewHelper to the project that makes the helper interactive like in the editor: Interactive view helper. - JSFiddle - Code Playground
I hope we can refactor the helper slightly so the integration of an interactive helper becomes a bit easier.
Thank you! I’m trying to adapt. This code works when your canvas is full-width, but I have sidebars and it not working! I will try to solve it and I will let you know the solution!
Thanks,
I gave it a shot and the result (codesandbox) look promising, I improved the integration, it require less code now, encapsulated most of the outside variables, you only need to call helper.render()
or helper.update()
in the animation loop, also added some hover effects for the points and the background sphere.
But I’m not there yet, I’m having some problems with the gizmo rotation, it’s completely off, the x
and y
axes seems to be switched.
// Line 118
this.rotation.y = rotationStart.y + mouseDelta.x;
this.rotation.x = rotationStart.x + mouseDelta.y;
I can’t extract the camera position/rotation from the gizmo, first I tried with quaternions
, got a mirrored rotation also tried to invert it, everything went sideways, now I’m using a dummyGimbal
with a dummyCamera
(null Object3D
s) to emulate the camera position/rotation, I’m getting the same mirrored effect at best.
I also need to add a clamp on the Y axis, just like the OrbitControls
so the camera don’t get flipped, and finally rewrite everything with the Mrdoob's code style TM
Hi
Thanks @Fennec, for sharing! I’m trying to implement it! Looks easier to implement. I’m having some painting problems. It is confusing for me, because you are creating a Object3D (viewhelper) but I didn’t see when you add it!
I will keep investigating!
Thanks
TC
maybe you can compare notes with this implementation. it can deal with any control (orbit, trackball, arcball, …), as well as damping.
With r149
the integration will be a bit easier since the helper works now with any controls. More information at GitHub:
It is done … It’s perfectly working now, a standalone and fully interactive version of the viewHelper
, you can run it with or without the orbitControls
or trackballcontrols
.
Here is the demo, also updated the github repo
@Mugen87, please tell me what you think and if I should commit a ThreeJS
version, thanks.