In MapView we have an ability to decide if we want to enable/disable zoom/pan/tilt , but in SceneView we have an ability to enable/disable of all these tools and not to decide separately which tool will be enabled or disabled.
example:
SceneView.InteractionOptions = new SceneViewInteractionOptions{IsEnabled = false};
The question is if we have abillity to enable/disable tools seperatly?
For the most part, no - most of these options are not exposed on the SceneView's InteractionOptions. You do have the ability to adjust the zoom factor and toggle flick on and off (see here), but toggling zoom, tilt, or other interactions are not available.
Thanks for reply ,
Another question , can i decide which key will trigger the event (zoom/pan/tilt)?
Sorry, no, this is not available in the API.