Working on a cartoon character design where the eyes would randomly blink. I have an image of the head with the eyes open and an image of just the closed eyelids. The closed eyelids image needs to go from height 0 to 14 and then back to 0 within ??ms on a random schedule.
Any ideas for the expression to accomplish this? Thanks!
I don’t know of any random tag, but you could use something like ((sin(#DWE#*((#Dsm#-#Ds#)*1000))+1)/2)
that should go from 0 to 1 with quasi randomness. If you multiply inside of the sin by something large you should be able to tell it more or less how often you want it to go.
You could use something like: if sin() >0.8 then (((#Dsm#-#Ds#)/x)*14) where x is your ??ms time.