Mine also gives an error, but don’t worry. They give different results.
I added a Color node that I multiply with my emission and opacity input. The Color alpha is mulötiplied with texture alpha and then input in opacity. You can see on the image below, as decrease the alpha my material becomes more and more additive. 0 alpha = completely black alpha as it’s multiplied by 0.
And you can’t have a jpeg image, because it does not save an alpha channel.
EDIT: If you pick “Alpha Blended” instead of “Alpha Blended (Premultiplied)” then there will be no additive, and turning down the alpha will make the material completely transparent and vanish. With premultiplied it will instead become more additive instead of more transparent.
I think the shader I use most in my effects would suit your needs (AddMul in the LoL fan art project I shared). While I don’t think you can qualify it of pure blendadd, you can still adjust the alpha opacity and the additive intensity independently.
It’s become my go-to shader. I tend to use it a bit too much, if I’m honest. It is an AlphaBlended (Premultiplied) too, btw. Also, while it is certainly not optimized for a real production, feel free to use it or experiment with it (the project has several variants, with a lot more options, like screen space masks, distortion and whatnot).
@michalpiatek Ok, I’ll keep that in mind. Thanks! @CellarPhantom Gotcha! Now I see how it’s working. White Alpha = Alpha Blended, Black Alpha = Additive. It’s like a two in one mode. @Hen_Ye Is this one texture or multiple textures that are overlapped? What parts are colored and what parts are alpha? @Torbach Yea, it looks like AlphaBlended (Premultiplied) has that setting. The creator just needs to fix that error haha. @Sirhaian Thanks again man! I appreciate the breakdown. You weren’t kidding about that max customization.
Welp, I believe I got my answer and it works! I just need to find the right balance and areas that I’d want to be additive/alpha-blended. Looks like it’s going to be a good amount of gray-tones instead of pure white/black.
A texture, is actually the last one, in front of those who are the last one texture using fuzzy filter Photoshop to do it, actually the first four can be combined into one as a colored, and the last piece of the original texture as alpha.
Here’s one thing I’ve noticed about Additive/Blend-Add in Unity. Opacity cannot be enabled nor does it allow the material to be faded. Additive blocks opacity in ShaderForge.
Alpha Blended (Pre-multiplied; “Blend-Add”) treats Alpha as “What is alpha and what is additive” so things still pop in and out. Using an alpha gradient will simply tell the values to go from alpha to additive before abruptly disappearing. It could work for very quick things such as glints/lightning but that’s about it (afaik).
So far I’ve been using Alpha Blended with a multiplication of (3/6/12) in the Emissive to brighten the Alpha Blended texture. It sorta looks Additive, but doesn’t act that way. It just brightens the texture. This is the only way I can get a texture with special shader (panning/tiling/warping) and get it close to additive. Otherwise, I’m stuck with static textures (but I do get additive w/ opacity in default Unity). It’s an annoying trade-off and I hope the SF Creator gets around to adding Additive Opacity like the default package.
And, when you say it abruptly disappears… Does it dissapear when alpha = 0, or when does that happen?
Some times I choose to multply my color (emission) with the alpha, so when alpha is 0 it’s fully additive, and the color is black because it has been multiplied by the alpha. And additive and black = nothing. So multiplying color with alpha can give a nice fade away for a blend-add shader.
When using Additive the opacity fade does not work. I’m using Vertex Color directly and its not affecting the opacity fade at all. Nor is inputting a grayscale value into opacity taken into account while in Additive mode.
As for the Blend-Add, I’ll see if that works. If everything is working for you, I’m not sure why it isn’t for me. It’s kinda odd. Here’s a video trying out the setting. It seems to be ignoring the black mask altogether. Perhaps you could make a quick vid so I can see if it’s just my end.
It made me confused at first, and I thought why is it not working for you? I tried it myself, and apparently I have to multiply my vertex RGB into my emission, otherwise it won’t fade away when I turn turn the alpha to 0/black in the particle system. I only change alpha over time, but I still need to multiply the RGB into emission for some reason. This is when I’m doing the additive blending. I don’t understand why you need to use the vertex RGB for the vertex alpha to work…?
And for Additive (Premultiplied) / Blend-add, you need to multiply the vertex alpha into emission as well, if you want to be able to fade it away completely.
EDIT: I am sorry. I must have spoke too soon. I can not do whatever I did again. I must have done something wrong on my part, because now I have the same issue as you. Alpha does not matter in additive blending.
Edit again: The only way I can get it to fade away is to use RGB and turn it black over time. Or, I think multiplying the vertex alpha with emission would have the same effect as trying to put it into opacity, with Additive blending.
Just multiply your vertex alpha color by whatever is going into emission and you can get “opacity” fading to work on Additive/Blend-Add (Alpha Blended (Premultiplied)) to work.
you re-create [SrcAlpha] [OneMinusSrcAlpha] and cannot use particle system vertex.alpha to lerp styles.
You still get addBlend according to alpha channel but imo it’s not the same
It comes down to preference
alpha acting like opacity …? or strictly controlling ‘Additivity’
One OneMinusSrcAlpha power imo comes from being able to lerp alpha <-> additive and in shaderforge the nodes would be
vertex.RGB * texture.RGB = emission
vertex.Alpha * texture.Alpha = opacity
so as @CellarPhantom pointed out you can’t use Alpha for opacity; the textures opacity is controlled by ‘fading out’ both Color and Alpha
to visualize you can imagine photoshop…
Texture.RGB is a dodge channel
Texture.Alpha [inverted] is a multiply channel
then you can mix-n-match styles: alphy, semi-additive, fully additive, /w full transparency etc…
Hey, sorry for bringing this back from the dead, but i’ve been staring at this thread all day trying to wrap my head around it.
I’ve got some help from a friend of mine and made a shader like this using code, but it won’t work with hdrp annoyingly, so I’m currently trying to recreate it in either shadergraph or amplify, but I just can’t seem to get it right.
Has anyone had any success making a AddBlend shader like this using Shadergraph or Ammplify?
((Alternatively knows how to get custom shaders to work with hdrp properly))