Hey Everyone, I think the title says it all, all i want to do is change my alpha clip threshold over particles life time, for example i have a water effect and i want the alpha clip value change while the particle reaches its end so i make a more realistic looking particles.
well the reason i cant use regular set alpha i think its because i made a custom shader, so when i use it i dont see any results. here are the pictures and textures
Shader Graph looks good, but texture should probably have a greater range of gray values to work well with what you are trying to do.
One thing that I think should be changed is the curve you are using. An alpha threshold closer to 1 will mean less visible pixels, while a value closer to 0 will mean more. This seems counter-intuitive, but it makes sense if you think about it.
With that in mind, you can either invert the curve values, or use (1 - alpha clip threshold) in your Shader Graph.
thanks for your replay, the point is, even when i change the curve, i dont see any changes, but when i manually change it myself, it changes and work completely fine even with this texture
okay my bad, it was inverted, and i had to start my value from 0.25 and go on till curve it to up and the make it more real which is at the end of the particle now we have more alpha cliping and its exactly what i wanted, thanks yo all