I want to keep the 60fps

Hello, support team

I have a question.
· I want to unify the fps of the animation.
By default, is it possible to change to 60fps and the has become to 24fps?
I want to maintain all the time 60fps.

Thank you

Permalink

Hi,

You can change your default frame rate from the application options dialog. Go to the Tools menu, then click on Application Options... You'll see the option for Default frame rate. Change that to 60 and hit OK or Apply. Now all new animations will use 60 fps. Note that the frame rate is specific to each animation, so changing the default frame rate will not change the frame rate on existing animations. You'll have to change that for each animation using the frame rate control on the timeline. If you have a lot of pre-existing animations, you can do it via Python and commands (load your actor into Studio, then execute the following Python script or type into the Python shell and note to use tabs not spaces):

anims = getAnimationNames()
for group in anims:
    for anim in group[1]:
        issueCommand('anim -group "{0}" -name "{1}" -setframerate 60'.format(group[0], anim))

- Jamie

Permalink

Hi,

Thank you for reply.
I was able to solve the problem.

Thank you