I am trying to make wireframe transparent in one of examples of Qt3D, but fails. I set alpha to 0.5 in robustwireframe.frag, but it does not work.
void main(){
// Calculate the color from the phong model
vec4 color = vec4( adsModel( fs_in.position, normalize( fs_in.normal ) ), 0.5);
fragColor = shadeLine( color );
How to make wireframe transparent in Qt3D?