I have written a mel command. I would like to repeat this command on every frame, for 24 frames. What is the mel for this?
thanks!!
PS sorry about the topic title I created a topic before I saw that I had written friends instead of frames.
I would write an expression, but if you cant do that do something like this
proc myCommand(){ print ("It's frame: " + currentTime -q + "\n");}
currentTime -q
for ($i = 1 ; $i <= 24; $i++) { myCommand; currentTime $i;}
God damit, the board bugs again.
Prettymuch the same as above except i would like to add.