| Re: Invert Opacity between two values with two layers by Trent Armstrong on Feb 23, 2009 at 4:18:06 pm |
temp = <opacity value>;
if (temp == 18) 0 else 18
OR
temp = <opacity value>;
Min = 0;
Max = 18;
value1 = 18;
value2 = 0;
linear(temp, Min, Max, value1, value2)
If you're using Hold Keyframes, you could use an IF statement. Otherwise you could use linear().
Trent Armstrong - Creative Cow Leader
http://www.dallasaeug.com
| |