Is there any way to use connect to a gestureManager in a SceneView like in MapView?
Looks like SceneView has not gestureManager by default, so i initialized one using
<SPAN class="keyword token">new</SPAN> <SPAN class="token class-name">esri</SPAN><SPAN class="operator token">/</SPAN>views<SPAN class="operator token">/</SPAN>inputs<SPAN class="operator token">/</SPAN><SPAN class="token function">GestureManager</SPAN><SPAN class="punctuation token">(</SPAN>SceneView<SPAN class="punctuation token">)</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN></SPAN>
I can then connect to the gestureManager and events are fired, but it's always giving me "hammer.input" events. Not e.g. "press", "tap" like in the MapView.
So my question is how to add and connect these events. Or is there any other way to detect a "press" event, e.g. for displaying a menu on touch devices.