Message 1 of 4
Expression not updating on time change
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I would expect my expression to update everytime there is a time change as per the docs "By default, an expression also executes whenever the current animation time or frame changes"
But this MEL expression only prints once :
int $f = frame;
print $f;
Here is the output :
expression -e -s "int $f = frame; \nprint $f;" -o "" -ae 1 -uc all expression1;
90// Result: expression1 //
currentTime 54 ;
currentTime 39 ;
Is this a bug?