Anim: Fix animation baking for Armature props creating a group per prop
Baked armature properties are now placed in a single group "Armature Custom Properties", instead of creating a new group "Group.nnn" for each custom property. This bug was not reported. Pull Request: https://projects.blender.org/blender/blender/pulls/117993
This commit is contained in:
@@ -368,7 +368,8 @@ def bake_action_iter(
|
||||
lookup_fcurves = {(fcurve.data_path, fcurve.array_index): fcurve for fcurve in action.fcurves}
|
||||
if bake_options.do_pose:
|
||||
for f, armature_custom_properties in armature_info:
|
||||
bake_custom_properties(obj, custom_props=armature_custom_properties, frame=f)
|
||||
bake_custom_properties(obj, custom_props=armature_custom_properties,
|
||||
frame=f, group_name="Armature Custom Properties")
|
||||
|
||||
for name, pbone in obj.pose.bones.items():
|
||||
if bake_options.only_selected and not pbone.bone.select:
|
||||
|
||||
Reference in New Issue
Block a user