GLScene icon indicating copy to clipboard operation
GLScene copied to clipboard

How to disable the GLScene navigators?

Open GrooverMD opened this issue 4 years ago • 0 comments

Helooo,

I need to disable the GLScene Navigators at specific times, like when using the Mouse Scroll wheel button over a component, but the navigators doesnt have an enable property. I have tried

OnMouseEnter

SceneNavigation.Form := Form1;

OnMouseLeave

 SceneNavigation.Form := nil;

As well as OnMouseEnter

SceneNavigation.GLSceneViewer := DefaultScene;  // TGLSceneViewer

and OnMouseLeave

 SceneNavigation.GLSceneViewer := nil;  

Neither of those methods does not stop the mouse scroll button from zooming the scene when over a component.

Can we get an Enabled property for the Navigators?

GrooverMD avatar Sep 01 '21 08:09 GrooverMD