GLScene
GLScene copied to clipboard
How to disable the GLScene navigators?
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?