Running MEL script at a given animation frame?

Running MEL script at a given animation frame?

Anonymous
Not applicable
247 Views
1 Reply
Message 1 of 2

Running MEL script at a given animation frame?

Anonymous
Not applicable
This is probably very simple, but I can't seem to find it anywhere. I just want to execute some arbitrary MEL script once the animation reaches a certain frame. Is this possible?
0 Likes
248 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
use an expression

if (frame == 29) {
// statement goes here
}
0 Likes