Sintel from the Open Movie "Sintel"
Press 'N' in the Viewport to access the rig UI under the tab 'Misc'. However, due to a built-in safety in Blender, this appears only if you saved and reloaded your newly created file first (the rig UI script is linked in with the character, but not immediately registered).
to make this work with the FK/IK bone properties Wayne Dixon provided some code that can be run in the text editor of blender in pose mode and fixes the issue.
@Matthew Pietsch import bpy
rig = bpy.context.active_object bones = [bone for bone in rig.pose.bones]
for bone in bones: for key in sorted(bone.keys()): if key not in '_RNA_UI': bone.property_overridable_library_set(f'["{key}"]', True)
@Matthew Pietsch I got a syntax error on line 1
@Matthew Pietsch It gives me and Invalid Syntax on the first line. Might this be because of Blender 4?
Join to leave a comment.