对选定的骨骼进行细分操作。
import bpy
# 选中 armature 模型
bpy.ops.object.select_all(action='DESELECT')
bpy.context.view_layer.objects.active = bpy.data.objects['Armature']
bpy.data.objects['Armature'].select_set(True)
# 对选中骨骼执行细分操作
bpy.ops.armature.subdivide(number_cuts=1, edge_descisions=False)
edge_descisions=True
,则将使用边缘来判断如何分割较大的面。