This content has been marked as final.
Show 2 replies
-
1. Re: Accessing original value of a property before an expression is applied
Dan Ebberts Nov 23, 2014 9:13 AM (in response to getoveritordie)Are you trying to do this with a script or expression?
With a script you just use .valueAtTime(time,preExpression) with preExpression set to true;
It's trickier with an expression but, if the pre-expression value is static, you can use "negative time". In the expression you do something like this:
if (time < 0){
value
}else{
// your real expression goes here
}
Then your other expression could do something like this:
your_property.valueAtTime(-1)
If the pre-expression value is not static, it's a little more complicated, but you can still do it.
Dan
-
2. Re: Accessing original value of a property before an expression is applied
getoveritordie Nov 23, 2014 10:38 AM (in response to Dan Ebberts)I didn't realize it was so easy! Probably looked at the wrong places. Thanks a lot! I am scripting, btw.

