hi,
i try to undesrtand how use particles shaders in unity. But i don’t found documentation that explain the difference between default shader like / additive / additive (soft) / alphablended / multiply and additive multiply… pls someone have documentation can help me ? or a little explanantion…
thank you
jeinsei
Download built-in shaders for yout version Unity from unity3d.com/support/resources/assets/built-in-shaders and see differents into them. See also in docs Unity about Blend. From docs you can see:
Blend SrcAlpha OneMinusSrcAlpha // Alpha blending
Blend One One // Additive
Blend OneMinusDstColor One // Soft Additive
Blend DstColor Zero // Multiplicative
Blend DstColor SrcColor // 2x Multiplicative
I hope that it will help you.