Expression example: Start or stop wiggle at specific time
You can use any expression in place of the wiggle expression used here, to begin and end the influence of any expression at a specific time.
This blog is just used for my own reference to include all AE Expression in one place.
1
2
3
4
5
6
| timeToStart = 2 ; if (time > timeToStart){ wiggle( 3 , 25 ); } else { value; } |
1
2
3
4
5
6
| timeToStop = 4 ; if (time > timeToStop){ value; } else { wiggle( 3 , 25 ); } |
1
2
3
4
5
6
7
8
| timeToStart = 2 ; timeToStop = 4 ; if ((time > timeToStart) && (time < timeToStop)){ wiggle( 3 , 25 ); } else { value; } |
No comments:
Post a Comment