matin saber
matin saber

Reputation: 52

How to use alpha in unity unlit graph for particle system without make it disappear?

enter image description here

Howdy Guys ! I'm using the unity's graph system , but when I take the Alpha from split and connect it to the Unlit Master's Alpha , the preview dissapear and when i add it to particle system as a shader , nothing works !!!! What is the problem ?

Upvotes: 0

Views: 1456

Answers (1)

derHugo
derHugo

Reputation: 90779

Checkout the AlphaClipThreshold

Fragments with an alpha below this value will be discarded.

Yours is set to 1 which means anything lower then 1 will be clipped of, so since your alpha moves in a range 0 to < 1 basically "everything" ;)

Upvotes: 2

Related Questions