Expression Delay/TimeOffset


#1

Hello Friends,

I need a “wiggle”-Expression to start with a delay. For instance i got a locator which moves straight along axis Z including a translation noise expression. But i want to start expression a few frames (100) later. how can i manage it?

My Expression:

locator5.translateY=noise(time*5)*5;


#2

if( frame >= yourStartFrame)
{
	 obj.ty = noise(frame) * 5;
}else{
	 obj.ty = noise(yourStartFrame) * 5;
 }

I use frame instead of time because this way you always have frames and do not mix frames and time.


#3

Thx haggi, this works great!! :slight_smile: