Which alpha should I change? Diffuse, specular, or ambient?

link|improve this question

That depends on what kind of blending you're looking for, but most likely you want to change the diffuse – annonymously Jan 14 at 1:03
so we generally only change the diffuse. Does changing the other alphas suppose to do anything? – purepureluck Jan 14 at 1:15
When you decrease the diffuse alpha it makes the main color part transparent, when you decrease the specular it makes the bright highlights transparent. If you know what each of these things are it should be pretty easy to predict the result. Otherwise it should be equally as easy to test it out yourself ;) – annonymously Jan 14 at 1:17
feedback

1 Answer

up vote 0 down vote accepted

You haven't said exactly what you're doing, so I'm going to assume that you are setting the colors of an object directly with glLightParameter, rather than fetching them from a texture.

To do what you want, which is have a single number have total control over the transparency of the object, you want to set ambient, diffuse, and specular color alphas to zero. You then use the emissive alpha to set the transparency.

If you're using textures, then you need to do more work. You need to use a proper texture environment model that takes the alpha directly from the fixed-function lighting with no modifications.

Or you can just use shaders and ditch all this fixed-function nonsense. It will save you so many headaches.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.