Hello everyone!

I am asking to learn how i can make a material partially transparent, what if i want a material to have 25% alpha so we can see from inside it?

Thank you!!

I'm assuming you are working with a shader, so all you have to do is just set the ALPHA variable in the fragment shader to 0.25.

ALPHA = 0.25;

@SIsilicon28 said: I'm assuming you are working with a shader, so all you have to do is just set the ALPHA variable in the fragment shader to 0.25.

ALPHA = 0.25;

I'm working with spatial material I can't find alpha variable there.

Do you know how to do that on spatial material?

Thanks!

Oh, well the albedo color has an alpha variable. Click on the parameter and use the alpha slider. Changing that won't be enough though. You also have to enable transparency with the transparent flag.

@SIsilicon28 said: Oh, well the albedo color has an alpha variable. Click on the parameter and use the alpha slider. Changing that won't be enough though. You also have to enable transparency with the transparent flag.

Yes that was is, thank you!

3 years later