Synopsis


bakeAllTempControls([onlyKeys=bool])


This command clears and bake all Temp Controls in the scene. This is useful when the pipeline doesn't support native constraints or prefer them to be baked to rig controls prior to publishing a shot.


Flags


NameArgument typesDescription
onlyKeysboolIf True, will bake only the keyframes. Default is False.

Examples


This will bake all Temp Controls in the scene at every frame:

from animBot import OpenAnimBot as OA

OA.bakeAllTempControls()

Python



This will bake all Temp Controls in the scene only at their keyframes:

from animBot import OpenAnimBot as OA

OA.bakeAllTempControls(onlyKeys=True)

Python