|
|
Try this...
Replace:
> #if(Count <= 18)
> color < (1-.027*(2*Count)), 0, ((2*Count)*.027)>
> #else
> color < abs(1-((2*Count)*.027)), 0, ((Count)*.027) >
With:
#if(Count <= 18)
color <1-(0.0556*Count), 0, 0.0556*Count>
#else
color <0.0556*(Count-18), 0, 1-(0.0556*(Count-18))>
To get things more accurate, you could also try replacing the "0.0556" with
"(1/18)".
Hope that helps,
Matt
Post a reply to this message
|
|