Hi all,
I'm hoping some maxscript guru can help me. I have a scene that I need to convert to linear. We don't use the color correct plugin, so I have figured out the formula needed to convert a non-linear color to gamma 2.2. Problem is, it is going to take forever to go through all the diffuse, reflection, refraction, gradient ramp, noise map, etc. colors in my scene and convert them.
Is there a way to write a script that can run through every possible color selector in every material and apply the following formula to each of the RGB values and round up to the next whole number?
If anyone could help it would be greatly appreciated as this would save me tons of time.
Thanks in advance!
-Matt
I'm hoping some maxscript guru can help me. I have a scene that I need to convert to linear. We don't use the color correct plugin, so I have figured out the formula needed to convert a non-linear color to gamma 2.2. Problem is, it is going to take forever to go through all the diffuse, reflection, refraction, gradient ramp, noise map, etc. colors in my scene and convert them.
Is there a way to write a script that can run through every possible color selector in every material and apply the following formula to each of the RGB values and round up to the next whole number?
Code:
(255^2.2*(X/255))^(1/2.2) Where X is each of the RGB values.
Thanks in advance!
-Matt