slipper Wrote:Stuka, thanks a lot for this mod mate, it really adds to the immersion. One question though, is it possible to change the colour of the smoke so it is not so black, maybe Grey or brown.?
thanks again
slipper
Hi!
I'm glad that you like it. yes, you can change the smokes colours.
Just open _BaseBoiling.eff ( use notepad) in my mod (make a backup before changes) and change the:
Color0 0.1 0.1 0.1 1.0
Color1 0.3 0.3 0.3 0.0
values in front of color0 indicate the initial colour for smoke when the effect starts
( the values are R G B A, R= red, G=green, B=blue A= alphachannel)
and values in front of color1 indicate the second colour of smoke which is visible when effect is running, so the changes in 3 first (R G B) values in each row gives different colours.
As you know:
255 255 255 is RGB code for white colour so, 1.0 1.0 1.0 means white and 0.0 0.0 0.0
means black. in this case 0.1 0.1 0.1 means 0.1x255=25.5 => 25 25 25 (R G B) or 26 26 26(R G B)
and 0.3 0.3 0.3 means 0.3x255=76.5=> 76 76 76 (R G B) or 77 77 77 (R G B).
I may suggest:
Color0 0.3 0.3 0.3 1.0
Color1 0.5 0.5 0.5 0.0
I hope you got me. :wink: