Import Scene Operators

bpy.ops.import_scene.autodesk_3ds(filepath="", filter_glob="*.3ds", constrain_size=10.0, use_image_search=True, use_apply_transform=True)

Import from 3DS file format (.3ds)

Parameters:
  • filepath (string, (optional)) – File Path, Filepath used for importing the file
  • constrain_size (float in [0, 1000], (optional)) – Size Constraint, Scale the model by 10 until it reacehs the size constraint. Zero Disables.
  • use_image_search (boolean, (optional)) – Image Search, Search subdirectories for any assosiated images (Warning, may be slow)
  • use_apply_transform (boolean, (optional)) – Apply Transform, Workaround for object transformations importing incorrectly
File :

addons/io_scene_3ds/__init__.py:61

bpy.ops.import_scene.obj(filepath="", filter_glob="*.obj;*.mtl", CREATE_SMOOTH_GROUPS=True, CREATE_FGONS=True, CREATE_EDGES=True, SPLIT_OBJECTS=True, SPLIT_GROUPS=True, ROTATE_X90=True, CLAMP_SIZE=0.0, POLYGROUPS=True, IMAGE_SEARCH=True)

Load a Wavefront OBJ File

Parameters:
  • filepath (string, (optional)) – File Path, Filepath used for importing the file
  • CREATE_SMOOTH_GROUPS (boolean, (optional)) – Smooth Groups, Surround smooth groups by sharp edges
  • CREATE_FGONS (boolean, (optional)) – NGons as FGons, Import faces with more then 4 verts as fgons
  • CREATE_EDGES (boolean, (optional)) – Lines as Edges, Import lines and faces with 2 verts as edge
  • SPLIT_OBJECTS (boolean, (optional)) – Object, Import OBJ Objects into Blender Objects
  • SPLIT_GROUPS (boolean, (optional)) – Group, Import OBJ Groups into Blender Objects
  • ROTATE_X90 (boolean, (optional)) – -X90, Rotate X 90.
  • CLAMP_SIZE (float in [0, 1000], (optional)) – Clamp Scale, Clamp the size to this maximum (Zero to Disable)
  • POLYGROUPS (boolean, (optional)) – Poly Groups, Import OBJ groups as vertex groups.
  • IMAGE_SEARCH (boolean, (optional)) – Image Search, Search subdirs for any assosiated images (Warning, may be slow)
File :

addons/io_scene_obj/__init__.py:71

bpy.ops.import_scene.x3d(filepath="", filter_glob="*.x3d;*.wrl")

Load a BVH motion capture file

Parameters:filepath (string, (optional)) – File Path, Filepath used for importing the file
File :addons/io_scene_x3d/__init__.py:55

Previous topic

Import Mesh Operators

Next topic

Info Operators