Blenderでボーンコンストレイントを一括でミュートにする
ポーズモードでボーンを選んだ状態で
code:py
import bpy
for bone in bpy.context.selected_pose_bones:
for con in bone.constraints:
con.mute = True # Trueでミュート
#Blender #Python