Hey there! I’ve made a dissolve effect in shader graph to use with VFX graph , and it feels like my particles have a dark ring around them, wheras i feel like they should be coloured similarly to the center, is there somewhere i’m going wrong with my setup?
if you Alpha blend a pre-multiplied texture the darks get darker like that - alpha blend multiplies the texture by inverse of alpha
either
make the RGB just plain white
Alpha == your dot shape because alpha blending is {Source x (1-alpha)}
or change blend mode on your master node to pre-multiplied alpha {Source x One}
this will mean to make your dot vanish you must lower alpha AND color to black to make it vanish, but you get the benefit of being able to make it additive too
if you use a white texture and alpha blending you must split texture.alpha first ->multiply it alone with the dissolve – this gets attached to master node alpha
yah premult is still broken in version 2019.4.12f1 - you will have to scrap the dark values in your RGB (just white or near white); compute only alpha /w dissolve and use alpha blending.
and fun fact since we often use black and white shapes for VFX we don’t even need the RGB texture fetch (just white) – alpha does everything so it can be a single channel texture for memory (like Red8)
Woah! I woulda never realised this. I still haven’t gotten around to testing this yet as work has been busy - But thanks so much for diving into all of this , it’s extremely helpful. I’ll report back asap!