So it is as follows?
- rgb
- r
- g
- b
- rgba
I was quite sure about the fifth being Alpha, glad I asked…
Thank you!
So it is as follows?
I was quite sure about the fifth being Alpha, glad I asked…
Thank you!
And if I wanted to emulate the same element in my material without a parameter, it would basically look like this?
Or, to be a bit too precise more like this, since there is no single alpha output?
What kind of output is the first node?
I know that the others are the respectively r, g, b and a, but what is the first/white node? I always assumed RGBA…
For texture samples/vector4:
the first output is always RGB.
the bottom one is RGBA.
A regular vec4 outputs RGBA, so if you want to grab an RGB out, and an Alpha out you’d need to set one component mask to RGB and the other to A.