01/07/2008, 05:58 PM
10/07/2008, 12:34 AM
robs1968 Wrote:kmr575 Wrote:Hey guys.
I am curious of how to use these. I go to the offset, look at 32 bit float and I see (.94). Now, that number should be (107). What am I doing wrong? And how do I change it?
The maximum color channel strength is 1.
If you input any number greater than 1, It will just look like you just changed it to 1, regardless of the value you enter.
To calculate the values for the color:
Divide each value by 255:
Red= 175 Green= 238 Blue= 238
After dividing each value by 255 you will have your 0 to 1 floating point values:
Red= 0.686 Green= 0.933 Blue= 0.933
brilliant reply exactly what i wanted to know
22/07/2008, 08:38 AM
thanks for this robs1968 i found it!