I have a simple scene (including Orbitcontrols) where I capture mouse clicks or touches via
renderer.domElement.addEventListener('click', onMouseClick);
or
renderer.domElement.addEventListener('pointerdown', onMouseClick);
respectively.
However, there does not seem to be an equivalent for dblclick (onDblClick), no matter if used in combination with OrbitControls or not.
Is there a standard way how to detect dblclick in threejs ?
Thank you! (as you may have guessed, I am new to threejs …)