Advertisement
Guest User

Blender import/export types

a guest
Dec 12th, 2010
3,146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. This is a 100% complete list of built-in Blender import and export file types/formats as of 2.49b (some file types/formats 2.5 support aren't listed here, but most are). More file types (such as Valve's .smd) can be supported with Python scripts. For importers, do a google search for "Blender [filetype] import" where "[filetype]" is the file extension you wish to import, minus the period. For exporters, do a google search for "Blender [filetype] export" where "[filetype]" is the file extension you wish to export, minus the period. For example, if you're looking for an .smd exporter, google "Blender smd export"
  2.  
  3. Unless otherwise noted, import and export requires the python version that your version of Blender uses. Blender 2.49a for example requires Python 2.5, while Blender 2.49b requires Python 2.6 . When Blender loads up, the console window will say something to the effect of "Compiled with Python version #.#.#", where each "#" is a number. The last number can be disregarded, but that is the version of Python you need. For example, Blender 2.49b lists 2.6.2, however 2.6.6 works just as well. The higher the third number, the better. Go to >> http://python.org/download/releases/ << to view a comprehensive list of all Python versions.
  4.  
  5. NOTE: Some of the below entries are missing spaces or have an extra space between the file description and the extension. This is not a typo, and is found exactly the same way in Blender 2.49b . This shouldn't affect Google searches for this list however, since Google looks for matches both containing a space or lacking one where provided in the search string (unless "quotes" are used, which makes Google ignore a lack of spaces)
  6.  
  7. Import:
  8. - Blender (.blend) [non-python script; File > Open]
  9. - VRML 1.0 [non-python script]
  10. - DXF [non-python script]
  11. - STL [non-python script]
  12. - 3D Studio (.3ds)
  13. - AC3D (.ac)
  14. - Autodesk DXF (.dxf .dwg)
  15. - COLLADA 1.3.1 (.dae)
  16. - COLLADA 1.4(.dae)
  17. - DEC Object File Format (.off)
  18. - DirectX(.x)
  19. - LightWave (.lwo)
  20. - Lightwave Motion (.mot)
  21. - Load MDD to Mesk RVKs [No filetype given]
  22. - MD2 (.md2)
  23. - MilkShape3D (.ms3d)
  24. - MilkShape3D ASCII (.txt)
  25. - Motion Capture (.c3d)
  26. - Motion Capture (.bvh)
  27. - OpenFlight (.flt)
  28. - Paths (.svg, .ps, .eps, .ai, Gimp)
  29. - Pro Engineer (.slp)
  30. - Raw Faces (.raw)
  31. - Stanford PLY (*.ply)
  32. - Wavefront (.obj)
  33. - X3D & VRML97 (.x3d / wrl)
  34.  
  35. Export:
  36. - Blender (.blend) [non-python script; File > Save - OR - File > Save As...]
  37. - VRML 1.0 [non-python script]
  38. - DXF [non-python script]
  39. - STL [non-python script]
  40. - 3D Studio (.3ds)
  41. - AC3D (.ac)
  42. - Autodesk DXF (.dxf/dwg)
  43. - COLLADA 1.3.1 (.dae)
  44. - COLLADA 1.4(.dae)
  45. - DEC Object File Format (.off)
  46. - DirectX (.x)
  47. - LightWave (.lwo)
  48. - Lightwave Motion (.mot)
  49. - M3G (.m3g, .java)
  50. - MD2 (.md2)
  51. - OpenFlight (.flt)
  52. - OpenInventor (.iv)
  53. - Quake 3 (.map)
  54. - Raw Faces (.raw)
  55. - Save Current Theme [No filetype given]
  56. - SoftImage XSI (.xsi)
  57. - Stanford PLY (*.ply)
  58. - VRML97 (.wrl)
  59. - Vertex Keyframe Animation (.mdd)
  60. - Wavefront (.obj)
  61. - X3D Extensible 3D (.x3d)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement