""" Submenus ++++++++ This menu demonstrates some different functions. """ import bpy class SubMenu(bpy.types.Menu): bl_idname = "OBJECT_MT_select_submenu" bl_label = "Select" def draw(self, context): layout = self.layout layout.operator("object.select_all", text="Select/Deselect All").action = 'TOGGLE' layout.operator("object.select_all", text="Inverse").action = 'INVERT' layout.operator("object.select_random", text="Random") # access this operator as a submenu layout.operator_menu_enum("object.select_by_type", "type", text="Select All by Type...") layout.separator() # expand each operator option into this menu layout.operator_enum("object.light_add", "type") layout.separator() # use existing memu layout.menu("VIEW3D_MT_transform") bpy.utils.register_class(SubMenu) # test call to display immediately. bpy.ops.wm.call_menu(name="OBJECT_MT_select_submenu")