Reputation: 279
In QML I have an object displayed in 3D with a Scene3D QML type, but I can click and move it with my mouse.
I would like it to not be clickable, it is possible ?
Upvotes: 0
Views: 310
Reputation: 279
Ok, found the answer, I added the following to my Scene3D item :
enabled: false
It prevents any mouse event
Upvotes: 1