Public Member Functions | |
def | clear_world |
def | draw |
def | execute |
def | fill_props |
def | invoke |
def | poll |
Public Attributes | |
filename_ext | |
filepath | |
filter_glob | |
format | |
props_initialized | |
selection_mode | |
visible_name | |
Static Public Attributes | |
string | bl_idname = "export_scene.selected" |
string | bl_label = "Export Selected" |
tuple | filename_ext |
tuple | filter_glob |
tuple | format |
tuple | format_props |
tuple | include_children |
tuple | keep_materials |
tuple | keep_textures |
tuple | keep_world_textures |
tuple | object_types |
tuple | props_initialized |
tuple | remove_orphans |
tuple | selection_mode |
tuple | visible_name |
Export selected objects to a chosen format
Definition at line 221 of file io_export_selected.py.
def io_export_selected.ExportSelected.clear_world | ( | self, | |
context | |||
) |
Definition at line 349 of file io_export_selected.py.
def io_export_selected.ExportSelected.draw | ( | self, | |
context | |||
) |
Definition at line 481 of file io_export_selected.py.
def io_export_selected.ExportSelected.execute | ( | self, | |
context | |||
) |
Definition at line 457 of file io_export_selected.py.
def io_export_selected.ExportSelected.fill_props | ( | self | ) |
Definition at line 324 of file io_export_selected.py.
def io_export_selected.ExportSelected.invoke | ( | self, | |
context, | |||
event | |||
) |
Definition at line 344 of file io_export_selected.py.
def io_export_selected.ExportSelected.poll | ( | cls, | |
context | |||
) |
Definition at line 321 of file io_export_selected.py.
string io_export_selected.ExportSelected::bl_idname = "export_scene.selected" [static] |
Definition at line 223 of file io_export_selected.py.
string io_export_selected.ExportSelected::bl_label = "Export Selected" [static] |
Definition at line 224 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::filename_ext [static] |
bpy.props.StringProperty( default="", options={'HIDDEN'}, )
Definition at line 226 of file io_export_selected.py.
Definition at line 324 of file io_export_selected.py.
Definition at line 344 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::filter_glob [static] |
bpy.props.StringProperty( default="*.*", options={'HIDDEN'}, )
Definition at line 231 of file io_export_selected.py.
Definition at line 324 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::format [static] |
bpy.props.StringProperty( name="Format", description="Export format", options={'HIDDEN'}, )
Definition at line 304 of file io_export_selected.py.
Definition at line 324 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::format_props [static] |
bpy.props.PointerProperty(
type=CurrentFormatProperties,
options={'HIDDEN'},
)
Definition at line 310 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::include_children [static] |
bpy.props.BoolProperty( name="Include Children", description="Keep children even if they're not selected", default=True, )
Definition at line 247 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::keep_materials [static] |
bpy.props.BoolProperty( name="Keep Materials", description="Keep Materials", default=True, )
Definition at line 259 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::keep_textures [static] |
bpy.props.BoolProperty( name="Keep Textures", description="Keep Textures", default=True, )
Definition at line 265 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::keep_world_textures [static] |
bpy.props.BoolProperty( name="Keep World Textures", description="Keep World Textures", default=False, )
Definition at line 271 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::object_types [static] |
bpy.props.EnumProperty( name="Object types", description="Object type(s) to export", default={'ALL'}, items=[ ('ALL', "All", ""), ('MESH', "Mesh", ""), ('CURVE', "Curve", ""), ('SURFACE', "Surface", ""), ('META', "Meta", ""), ('FONT', "Font", ""), ('ARMATURE', "Armature", ""), ('LATTICE', "Lattice", ""), ('EMPTY', "Empty", ""), ('CAMERA', "Camera", ""), ('LAMP', "Lamp", ""), ('SPEAKER', "Speaker", ""), ], options={'ENUM_FLAG'}, )
Definition at line 277 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::props_initialized [static] |
bpy.props.BoolProperty( options={'HIDDEN'}, default=False, )
Definition at line 315 of file io_export_selected.py.
Definition at line 324 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::remove_orphans [static] |
bpy.props.BoolProperty( name="Remove Orphans", description="Remove datablocks that have no users", default=True, )
Definition at line 253 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::selection_mode [static] |
bpy.props.EnumProperty( name="Selection Mode", description="Limit/expand the selection", default='SELECTED', items=[ ('SELECTED', "Selected", ""), ('VISIBLE', "Visible", ""), ('ALL', "All", ""), ], )
Definition at line 236 of file io_export_selected.py.
Definition at line 349 of file io_export_selected.py.
tuple io_export_selected.ExportSelected::visible_name [static] |
bpy.props.StringProperty( name="Visible name", description="Visible name", options={'HIDDEN'}, )
Definition at line 298 of file io_export_selected.py.
Definition at line 324 of file io_export_selected.py.