[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
ただいまコメントを受けつけておりません。
b_Arm.Rとかを
b_RightArm
import bpy
for x in bpy.context.object.data.bones:
if x.name[-2:] == '.R' and x.name[:2] == 'b_' and (not x.name[:5] == 'b_IK_'):
x.name = 'b_Right' + x.name[2:-2]
if x.name[-2:] == '.L' and x.name[:2] == 'b_' and (not x.name[:5] == 'b_IK_'):
x.name = 'b_Left' + x.name[2:-2]