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
2019-09-21PLY Format: ngon support for import/exportCampbell Barton
D5865 by @cmbasnett with minor edits.
2019-09-03UI: New options layout for IO Add-onsJulian Eisel
Updates importers/exporters for the new file-browser design. They are now reorganized into sub-panels. Updated the Blender version requirement (won't be compatible with older Blender versions). Left the Add-on versions untouched, will leave that up to Authors to change.
2019-07-15Update wiki_url to new manual pagesAaron Carlisle
2019-05-16Update for Depsgraph API changesSergey Sharybin
Addresses new behavior of object.to_mesh(). This is corresponding part for D4875. Reviewers: brecht Reviewed By: brecht Differential Revision: https://developer.blender.org/D4876
2019-05-16Addons: Adopt for Dependency Graph API changesSergey Sharybin
Mainly search-and-replace approach. Tested the enabled-by-default export/import addons. Seems to work with an exception of X3D which is still referencing Blender Internal material properties. Reviewers: brecht Reviewed By: brecht Differential Revision: https://developer.blender.org/D4866
2019-04-05Fix bug in previous commitRobert Guetzkow
Differential Revision: https://developer.blender.org/D4655
2019-04-05Fix T63227: import vertex colors from .ply file without alphaRobert Guetzkow
Differential Revision: https://developer.blender.org/D4648
2019-01-25PLY: cleanup styleCampbell Barton
2019-01-25PLY: Export alpha channel for vertex colorsCampbell Barton
2018-11-08Update for changes in Blender's APICampbell Barton
2018-10-19Merge branch 'master' into blender2.8Brecht Van Lommel
2018-10-19Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3746
2018-10-10Update for removal of tessfaces.Brecht Van Lommel
This ports the already working addons. The disabled x3d, psk, lwo, 3ds, raw, dxf addons still need to be converted.
2018-10-03PLY Import: add back some code from recent 2.8 updateCampbell Barton
'TextureFile' while not officially part of the spec is often used, so it's nice to add it back later.
2018-10-02port 'Stanford PLY format' addon to Blender 2.8Jacques Lucke
Here are a couple of example files for testing: https://people.sc.fsu.edu/~jburkardt/data/ply/ply.html I removed the texture support that was implemented here: rBA471370 (it is no official part of the file format; the exporter did not support it; reimplementing it is a bit of a hassle) Reviewers: brecht Differential Revision: https://developer.blender.org/D3754
2018-09-28Use orientation_helper decoratorDalai Felinto
The warnings in the console are getting on the way. May as well update the addons even if they are still mostly not ported to 2.8. We can probably ditch orientation_helper_factory altogether.
2018-08-29Python / Cleanup: rename INFO_MT to TOPBAR_MT to reflect actual location.Brecht Van Lommel
2018-06-29Add missing add-on version metadataAaron Carlisle
Only default enabled addons Give each the version: 1.0.0
2017-09-29I/O script changes for GSoC 2017 Vertex PaintCampbell Barton
These are changes to the ply and fbx export functions, and the ply import function, to deal with vertex color alphas as implemented in the GSoC 2017 Vertex Paint project - see T52910 & D2855
2017-06-30Fix version check for PLYCampbell Barton
Some programs wrote extra trailing zeros. Alternate fix to D2692.
2017-03-19Cleanup: identity for None comparisonCampbell Barton
2015-07-09Register individual classes instead of per-moduleCampbell Barton
2015-04-15PLY: add missing type: shortCampbell Barton
2015-04-10Cleanup: imports (formatting)Campbell Barton
2015-03-24Fix T44089: restore default orientation axes of each addons to stae before ↵Bastien Montagne
rBAbfbabc0592b8. Now using a class factory to allow customization of those defaults axes, still way less verbose than previous code!
2015-01-22Fix: replaced Python module "imp" with "implib"Sybren A. Stvel
Python 3.4.0 deprecated the "imp" module, and replaced it with "importlib". This changes imp.reload() into implib.reload(). Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1016
2015-01-14rename IOHelperOrientation -> OrientationHelperCampbell Barton
2015-01-14Use new IOHelperOrientation class to handle forward/up axes.Bastien Montagne
Helps ensuring common behavior, and saves quite a few lines of code, too...
2014-05-21Maintenance to bl_info, remove redundant tracker URL'sCampbell Barton
2014-05-07Fix T40069: PLY import vertex colour scaling.Bastien Montagne
devide chars by 255, not 256...
2014-02-04Fix T38462: error importing PLY with leading spaceCampbell Barton
2013-09-05patch [#36653] Tiny patch that extends import_ply.py to read edges (and ↵Campbell Barton
allow for 3D curves import) from Thomas Schiex (treepleks)
2013-08-10patch [#36407] Triangle strip support in PLY file importerCampbell Barton
from Eric Saari (esaari1)
2013-04-15option to apply scale on export. also add global scale options for ↵Campbell Barton
exporters. OBJ/X3D/VRML/PLY/STL
2013-03-24remove use of ob.update_from_editmode() since editmode meshes don't get ↵Campbell Barton
access to customdata layers.
2013-03-22only apply modifiers if the mesh has modifiersCampbell Barton
2013-03-21only calculate normals if there being exported.Campbell Barton
2013-03-21use object.update_from_editmode() for scripts which read object data.Campbell Barton
2013-03-21export PLY with object transformation applied.Campbell Barton
2013-02-07make option for applying modifiers consistentCampbell Barton
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-10-09remove sticky coordinates use.Campbell Barton
2012-09-08Fix [#32511] blender hangs on importing malformed ply fileBastien Montagne
Made a few refactoring/style cleanup of code here...
2012-07-29style cleanupCampbell Barton
2012-07-04Spellfixes: colour -> colorBastien Montagne
2012-07-03Spell and typo fixes.Bastien Montagne
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
2012-06-27patch from Chris Want to make ply script more useful when imported from ↵Campbell Barton
other scripts (returning a mesh).
2012-06-23update wiki version ro 2.6Brendon Murphy
finished
2012-05-27Turned out only raw exporter had same bug...Bastien Montagne
Also, only calc_tessface() when needed, and use ExportHelper for RAW!