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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-08-29correct recent error, missed these changes in last commitCampbell Barton
2013-08-21fix [#36432] Exporting obj with normalmap creates opacity map in the mtl ↵Campbell Barton
file instead - r3954/patch [#32914], introduced incorrect displacement map name, corrected. - added support for reading displacement maps. - remove checks that added alpha support for diffuce images, OBJ has alpha material settings for this.
2013-04-05fix [#34864] Save&Load - Relative Paths ticked, Obj Import and Textures tab ↵Campbell Barton
uses absolute paths use preference for relative paths.
2013-02-10add NGon importer supportCampbell Barton
2013-01-22fix for api change with importerCampbell Barton
2012-12-19formatting edits for bl_infoCampbell Barton
2012-12-16don't overwrite alpha with material `illum` setting, or when using an alpha ↵Campbell Barton
texture- if its already been set.
2012-12-04fix [#32637] OBJ Import Alpha Map ProblemCampbell Barton
2012-10-18fixes suggested by kromar5959 on irc.Campbell Barton
use Tr as translucency and use reflection coords for 'map_refl' setting.
2012-10-183ds max writes 'map_refl' in materials. add support for reading this.Campbell Barton
2012-10-16OBJ now reads MTL using the float_func(), so materials can use commas in ↵Campbell Barton
floating point values too.
2012-09-05code cleanup: python - pass multiple args to string startswith() / ↵Campbell Barton
endswith() functions rather than calling multiple times.
2012-07-29style cleanupCampbell Barton
2012-07-04Last spell checking (for now).Bastien Montagne
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
2012-06-19This should fix [#31801] "OBJ importer doesn't import smoothing groups as ↵Philipp Oeser
sharp edges" reported by Tom Penn. There was code to mark edges as sharp but it was disabled as being too slow. Found a quicker way using bmesh. Reviewed by Campbell.
2012-06-18revert r3501 - needs further investigationPhilipp Oeser
2012-06-18This should fix [#31831] "obj import name" reported by dan grauer.Philipp Oeser
Now the importer assigns the object the same name as the object data. Reviewed by Campbell.
2012-06-18This should fix [#31835] "OBJ Importer corrupts a model (crash in edit ↵Philipp Oeser
mode)" reported by paul geraskin. The importer did the mesh validation before calculating edges (should be the other way around). Reviewed by Campbell.
2012-03-23update addons enabled by default to use 'faces -> tessfaces' also grease ↵Campbell Barton
pencil scatter and quake map export.
2012-03-22correct spelling tessellateCampbell Barton
2012-03-11patch [#30516] OBJ importer run out of memory fixCampbell Barton
from Martijn Berger (juicyfruit) with some edits for efficient dict access.
2012-03-08update obj import/export for BMesh api changes. (should now works as expected)Campbell Barton
2012-01-01fix [#29751] import on obj file fails (and shouldn't)Campbell Barton
2011-11-24fix [#29375] Obj Import failsCampbell Barton
2011-11-19indentation edits and copy pyrimid from contrib (where I had made some ↵Campbell Barton
edits), removed so this wont happen again.
2011-10-17fix spelling errors for commentsCampbell Barton
2011-10-06Fix #28818: Error when trying to import objSergey Sharybin
Fix #28816: Error when importing obj file with texture due to api change Update obj importer and xcf importer to use new post-texface api.
2011-08-01rename operator properties and make __init__ file pep8-80 compliant.Campbell Barton
2011-07-29pep8 edits and some style changeCampbell Barton
2011-07-11cleanupCampbell Barton
- remove/comment unused variables - remove unused imports - fixed some bugs using incorrect variables
2011-05-28update for changes in blenders apiCampbell Barton
2011-05-27fix for mistake in module rename.Campbell Barton
2011-05-27update for correction in apiCampbell Barton
2011-05-26update for api changes in blenderCampbell Barton
2011-05-25axis conversion for X3D and OBJ operatorsCampbell Barton
2011-05-16update for changes in blender module layout, also add global axis conversion ↵Campbell Barton
to FBX.
2011-05-10minor syntax changeCampbell Barton
2011-05-10fix [#27338] OBJ import fails with international characters in pathCampbell Barton
2011-05-08fix [#27325] OBJ - Normalmap imports with Colour tickedCampbell Barton
2011-04-25fix [#27170] wavefront obj import script drops error if material 'fresnel' ↵Campbell Barton
property is used
2011-04-25rename obj import varsCampbell Barton
2011-04-25fix [#27149] OBJ import does not import OBJ vertex/poly groups, produces ↵Campbell Barton
error messages disable polygroup by default too.
2011-04-19fix [#27019] Loading OBJ in animated scene causes runtime errorCampbell Barton
2011-03-18address [#26527] Export-import OBJ, materials "tracaeble" uncheckedCampbell Barton
Enable raytracing on OBJ materials always, not conforming to OBJ spec but this is annoying for newer software where raytracing is default.
2011-03-03this wasn't restored from 2.4x, fix [#26266] .OBJ import 'Clamp Scale' not ↵Campbell Barton
working also enable preset menu
2011-02-11use mesh.validate() to ensure all meshes of imported data is ok and wont ↵Campbell Barton
crash blender.
2011-02-02support for MTL 'illum' keyword. also fixed utf8 encoding issue problem with ↵Campbell Barton
some files.
2011-02-01use bytes rather then unicode for importing OBJ'sCampbell Barton
2011-02-01fix for incorrect attributes, also use bump as map_bump.Campbell Barton