May I reference the current property's value before an expression in an expression?
This driver expression will generate random values between -1 and 1:
2.0 * (noise.random() - 0.5)
If I was to add that to the current location.x, for example, it seems like it would be:
self.location[0] + 2.0 * (noise.random() - 0.5)
This however would keep adding to the location.x value on every frame rather than adding to the original value (before the expression). I'm used to After Effects expressions that use value for this.
Thank you!
