You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current support for IK (#63) is implemented by calling blender API bake_action to baking constraint to actions, however, blender bake_action inner calls frame_set() for every frame. So call bake_action for every object has constraints is a waste of performance,
there are two possible way to solve it:
for blender > 2.79.1, there exist API bake_action_objects to bake multiple objects at once
simple use the approach of BetterCollada addon, we iteratively call frame_set() to export all the animation, give up the current implementation of evaluating fcurves
The text was updated successfully, but these errors were encountered:
Current support for IK (#63) is implemented by calling blender API
bake_action
to baking constraint to actions, however, blenderbake_action
inner callsframe_set()
for every frame. So callbake_action
for every object has constraints is a waste of performance,there are two possible way to solve it:
bake_action_objects
to bake multiple objects at onceframe_set()
to export all the animation, give up the current implementation of evaluating fcurvesThe text was updated successfully, but these errors were encountered: