Blender Git Commit Log
Git Commits -> Revision 452c8cf
Revision 452c8cf by Willian Padovani Germano (master) August 4, 2004, 06:16 (GMT) |
Done. Scripts: - Jean-Michel Soler probably lost some hours of sleep since Sunday, but he managed to send me the updated path import scripts a few hours ago. My tests with Inkscape .svg and .ps and Gimp worked fine. He also tested a lot and sent me info about what is already supported. I'll send Ton a doc about bundled scripts including this info. Importers: .ai, .svg, .eps/.ps, Gimp 1-1.2.5 / 2.0. - Jean-Michel also contributed his Texture Baker script. - Campbell Barton contributed two new scripts: a mesh cleaner and a vloop skinning / lofting script. He also sent updates to his obj import / export ones. - A Vanpoucke (xand) contributed his Axis Orientation Copy script. And that makes 8 last minute additions. Thanks a lot to the authors and special thanks to JMS and Campbell for their hard work : ). BPython: - tiny addition (I'm forced to call it a showstopper bug ;) so JMS's path import scripts (that actually convert to obj and make Blender load the .obj curves) can use Blender.Load() and not rename G.sce, the default filename. Blender.Load(filename, 1) doesn't update G.sce. Nothing should break because of this, Load(filename) still works fine. - Made Blender complain again if script is for a newer Blender version than the one running it. |
Commit Details:
Full Hash: 452c8cf838f5616ee750b4e512ceac6809a9a559
SVN Revision: 2977
Parent Commit: 54e1f40
Lines Changed: +3291, -403
9 Added Paths:
/release/scripts/Axiscopy.py (+78, -0) (View)
/release/scripts/clean_mesh.py (+188, -0) (View)
/release/scripts/mod_ai2obj.py (+383, -0) (View)
/release/scripts/mod_eps2obj.py (+390, -0) (View)
/release/scripts/mod_gimp2obj.py (+320, -0) (View)
/release/scripts/mod_svg2obj.py (+647, -0) (View)
/release/scripts/paths_import.py (+35, -0) (View)
/release/scripts/skin.py (+558, -0) (View)
/release/scripts/tex2uvbaker.py (+254, -0) (View)
/release/scripts/clean_mesh.py (+188, -0) (View)
/release/scripts/mod_ai2obj.py (+383, -0) (View)
/release/scripts/mod_eps2obj.py (+390, -0) (View)
/release/scripts/mod_gimp2obj.py (+320, -0) (View)
/release/scripts/mod_svg2obj.py (+647, -0) (View)
/release/scripts/paths_import.py (+35, -0) (View)
/release/scripts/skin.py (+558, -0) (View)
/release/scripts/tex2uvbaker.py (+254, -0) (View)
6 Modified Paths:
/release/scripts/knife.py (+1, -1) (Diff)
/release/scripts/obj_export.py (+104, -128) (Diff)
/release/scripts/obj_import.py (+304, -266) (Diff)
/release/windows/installer/00.blender.nsi (+8, -0) (Diff)
/source/blender/python/api2_2x/Blender.c (+19, -6) (Diff)
/source/blender/python/BPY_interface.c (+2, -2) (Diff)
/release/scripts/obj_export.py (+104, -128) (Diff)
/release/scripts/obj_import.py (+304, -266) (Diff)
/release/windows/installer/00.blender.nsi (+8, -0) (Diff)
/source/blender/python/api2_2x/Blender.c (+19, -6) (Diff)
/source/blender/python/BPY_interface.c (+2, -2) (Diff)