清除倒数 Child-of 约束的倒数矩阵。
这个操作会清除倒数 Child-of 约束的倒数矩阵。如果 Child-of 约束是对象,目标矩阵就是对象的矩阵。如果是其他类型的约束,目标矩阵是指定的矩阵。
bpy.ops.constraint.childof_clear_inverse()
此操作不接受参数。
此操作没有返回值。
此操作不会引发异常。
使用此操作清除倒数 Child-of 约束的倒数矩阵。
import bpy
# get the active object
obj = bpy.context.active_object
# get the inverse child-of constraint
child_of_constraint = obj.constraints.get('Child Of')
if child_of_constraint:
# clear the inverse matrix
bpy.ops.constraint.childof_clear_inverse()