HOW can i render a object as one color whatever its position is change or not in the worldspace ?
Unsolved
General and Desktop
-
I think you can change your theme. In my case, I wanted to plot a
Q3DSurface
and set thesetAmbientLightStrength
to 1 and disabled the backgroundsetBackgroundEnabled
//Set theme Q3DSurface* m_graph; ... Q3DTheme* theme = new Q3DTheme(Q3DTheme::Theme(1), m_graph); m_graph->setActiveTheme(theme); theme->setAmbientLightStrength(1.0f); theme->setBackgroundEnabled(false); //disable Xplane color, reflection etc...