Reply To: Sidebar issue

Forum Archive Sidebar issue Reply To: Sidebar issue

#87303
Dwayne Savage
Participant

    To get this to work you need to change 3 Lines in the script and click the play button at the top. Remember to save afterwards.  Goto Text editor and if the script isn’t already showing then use the dropdrop down and select rig_ui.py. Then scroll down to line 496. 

              row.prop(context.user_preferences.edit, “keyframe_new_interpolation_type”, text=””)

    Delete the user_

              row.prop(context.preferences.edit, “keyframe_new_interpolation_type”, text=””)

    Then on line 498 and 499 remove the “res” and “mask” along with the comma after them.

              row.prop(context.active_object, ‘[“rig_res”]’, “Res”, toggle=True)

              row.prop(context.active_object, ‘[“mask”]’, “Mask”, toggle=True)

    to

              row.prop(context.active_object, ‘[“rig_res”]’, toggle=True)

              row.prop(context.active_object, ‘[“mask”]’, toggle=True)