📋 Metadata

💬 Content

When I create custom pie menu entry type ‘Command’, eg. long one line script (it removes every second loop):
bpy.ops.mesh.loop_multi_select(ring=True); bpy.ops.mesh.select_nth(); bpy.ops.mesh.loop_multi_select(ring=False); bpy.ops.mesh.delete_edgeloop()
The undo works, but redo doesn’t. Would you be able, @roaoao to make it so that this custom command has support for undo then redo, like we can do with python operators by using:
bl_options = {"REGISTER","UNDO"}
?


🔗 View on Blender Artists