JustinR
Active Member
- Messages
- 28
- Likes
- 3
So I wrote this expression:
But I want to start wiggling at 1.3s. After var. timeTostart change wiggle still starts at 1s. So how to format time properly that I could start at more specific time?
Code:
timeToStart = 1;
if (time > timeToStart){
a = wiggle(3,100);
[a[0],value[1],value[2]];
}else{
value;
}
But I want to start wiggling at 1.3s. After var. timeTostart change wiggle still starts at 1s. So how to format time properly that I could start at more specific time?