Hey All, Probably a very easy fix, but particle/ pyro isn't my strong suit.
Image Not Found
I'm trying to learn how to do a powder explosion simulation and I'm using my own geo instead of the sphere in the tutorial. However my vector seem to only be going in one direction when I normalize them. How would I modify it to go in all directions? Any help would be most appreciated!
you can also pretend your text is within a 0 centered unit cube when generating direction from @P adjust Bias to blend between the that and original @P based directions to get the directions you like
EDIT: also make sure the signatures of random() and xnoise() are what you want as by using them in a single line assigned to vector variable or attribute they will return vector effectively changing directions slightly as they act per component if you wanted to change just length use float signatures
v@v = normalize( P ) * float(random(@ptnum)) * float(xnoise( v@P * f + o));
or
floatlength_scale = random(@ptnum) * xnoise( v@P * f + o) ;
v@v = normalize( P ) * length_scale;