Set background image to qt3d scene
-
Hi,
In qt3d, I can change the background from pure black to any color of my choice in the paintGL function using:
painter->setClearColor(QColor(0,255,255,105));In the same function, is it possible to set a background image to the viewport?
Thanks
-
I know this question is rather old, but I stumbled upon it trying to get a background image working, that's why I'm posting this here for anyone else who needs such a feature.
I implemented a background image framegraph at this repository: https://github.com/Sonnentierchen/Qt3D-BackgroundImage.