Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-02-28left in printsCampbell Barton
2008-02-28Fix for [#8382] UV unwrap & export puts seams on all edges.Campbell Barton
Maya uses OBJ's UV's to generate seams, some people complained that models imported from blender didnt work well in maya. It was faster to write every faces UV (without doing a remove doubles), but sharing UV coords makes smaller files and might also be more efficient in other applications.
2007-10-21changed default nan_definitions.mk to use python 2.5 for linux (ai64 default ↵Campbell Barton
was py 2.2 which probably wont even compile anymore) pose.c - left a print here export obj would ask about file overwriting twice.
2007-08-21obj export had the overwrite confirmation commented out from testing, ↵Campbell Barton
UIBlock needed to clear the events so tooltips show.
2007-06-06exporting normals wit the "High Quality Normals" option disabled, exported ↵Campbell Barton
localspace normals. not too bad since HQNormals were enabled by default.
2007-06-04OBJ smooting groups exported enabled for by default for the first smooth ↵Campbell Barton
group (should have been disabled) gen_library.c - Own error, hashing did not decref the tuple it created. Draw.c - callback also missed a decref
2007-05-17'Copy Images' option for the .obj exporter would fail.Chris Want
Changing Material ==> Blender.Material fixed it.
2007-04-20adding a python function for cleaning strings (for filenames and export ↵Campbell Barton
names) BPySys.py - used fotr obj and fbx export. view.c - missed one smoothview/camera. Brigg's hide object patch didnt change the object selection flag, other minor changes also.
2007-01-313ds_export - enabled textures as an option since it works with some ↵Campbell Barton
appliactions (only way to get textured models from blender to google sketchup) 3ds_import - added option to disable recursive image searching (could be slow somtimes) export_obj - when making group/object names only use both object and mesh name when they differ. weightpaint_clean, weightpaint_grow_shrink - minor updates. Render.py - own error in epydocs.
2007-01-26added option "morph target" since many people complain that verts are ↵Campbell Barton
re-ordered with some options enabled.
2007-01-26fixed an obscure bug in obj import (possibly in Mesh.c) that made adding ↵Campbell Barton
edges as faces mess up. export obj now dosnt remove double UV's, its too slow. updated version numbers to 243 and other minor changes.
2007-01-25use better Python 2.4 syntax sorting (in a try so py 2.3 still works)Campbell Barton
use new scene/object creation for making temp objects.
2006-12-25somehow pasted some text by mistake that raised an error.Campbell Barton
2006-12-25modified scripts from using older/depricated Python API commands, deprecated ↵Campbell Barton
scn.getChildren() in the docs.
2006-12-16made editmode select grouped work with mixed selections - can show select ↵Campbell Barton
grouped items for vert/edges/faces all at once. bad comment in Axiscopy and spelling fix in export_obj
2006-12-16update to Axiscopy, more error checking. basic functionality the same.Campbell Barton
- Dont allow it to apply the matrix twice to a linked-dupe. (Same as Apply Loc/Size/Rot) - Make sure that the source object is active, not just the first selected object. - Use Mesh instead of NMesh. - use mesh.transform(mat) rather then vert by vert vec*mat Other scripts had pupBlock changes for better layout.
2006-12-12added many checks to uvcopy so it dosnt raise errors.Campbell Barton
Minor changes to radiosity_export, updated to work with the new API (vertexColors MTFace) obdatacopier - was getting the selection but not using it. made it ignore some read only properties. BPyMesh - minor change: use face iterator rather then making a tuple()
2006-10-01added a BPyObject.py with 1 function- getDerivedObjects, gets all ↵Campbell Barton
dupliObjects and can optionaly get a mesh generated from the objects particles. export obj can now export duplis and particles as well as faster face exporting and other small cleanups/speedups.
2006-09-25BPyMessages - added "Save over" message for scripts to use, so as not to ↵Campbell Barton
overwrite files. import_obj - comments, docstring additions, cleanup. OBJ export: -renamed export_obj faster edge exporting (use edges LOOSE flag rather then finding zero face user edges) check for file before overwriting use object iterators