Copies keyframes of specific frame number of selected bones in pose mode to specified frame numbers.

Copies keyframes of specific frame number of selected bones in pose mode to specified frame numbers.

 import bpy # キーフレームの番号リスト keyframe_numbers = [1, 2]  # このリストにコピー先のキーフレーム番号を追加してください。 # アクティブなオブジェクトがアーマチュアであることを確認 if bpy.context.object.ty...