That’s a good idea! Forgot about that function.
Dan Ebberts also had a suggestion — to use the wiggle function with 5th parameter set to 0 so that value doesn’t change over time.
The randomness of the wiggle function does NOT vary when the comp is duped.
But it works differently, because it returns values based on the underlying property value … not a defineable range like -1 to 1.
I’m trying to write a random function that returns values only towards the edges. That is, I want values from -400 to -200 and 200 to 400, but NOT -200 to 200.
Can anyone think of an elegant way to do this?
The only thing I came up with is to get a random number from -200 to 200, then ADD or SUBTRACT 200 based on the sign of the first number.
This was easier with the random() method — not sure how to do it with wiggle().