I’ve tried the two operators for “Paint Curve Slide” and “Paint Curve Cursor” in Blender’s “Python Console” while in “Sculpt Mode” and got these messages:
>>> bpy.ops.paintcurve.cursor()
{‘PASS_THROUGH’}
>>> bpy.ops.paintcurve.slide(align=False, select=True)
{‘PASS_THROUGH’}
They seem to have no effect. Or does anybody know what’s the correct usage of these operators? Other operators return a
“{‘FINISHED’}” message, for example:
>>> bpy.ops.paintcurve.add_point(location=(100, 1000))
{‘FINISHED’}