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
2020-09-05glTF importer: convert glTF meters to the units of the Blender sceneJulien Duroure
2020-09-05glTF importer: perf: use numpy to manage normals checksJulien Duroure
2020-08-08glTF importer: fix regression for primitives having different numbers of ↵Julien Duroure
TEXCOORD_{n}s
2020-07-24glTF importer: fix regression for skinned mesh normals not being renormalizedJulien Duroure
2020-07-21glTF importer: add option to glue pieces of a mesh togetherJulien Duroure
Thanks scurest!
2020-07-21glTF importer: performance: rewrite importer using numpyJulien Duroure
Thanks scurest!
2020-05-04glTF: code cleanup - remove no more needed importJulien Duroure
2020-02-23glTF importer: manage morph weights at node levelJulien Duroure
2020-02-22glTF: remove 2.79 on upstream repositoryJulien Duroure
Files are no more computed to remove 2.79 code here, so some little modification on files can be found
2020-01-24glTF importer: performance improvement importing meshes & normalsJulien Duroure
2020-01-24glTF importer: fix skinning & hierarchy issuesJulien Duroure
See https://github.com/KhronosGroup/glTF-Blender-IO/pull/857 for details
2019-11-13glTF importer: code refactoring, texture node + mapping + UVMapJulien Duroure
2019-10-12glTF importer: Import extra data as custom propertiesJulien Duroure
2019-10-01glTF importer: more perfJulien Duroure
2019-09-26glTF importer: refactoring accessor cachingJulien Duroure
2019-09-26glTF importer: create only 1 slot by material, if multiple primitive use ↵Julien Duroure
same material
2019-09-26glTF importer: big perf improvement for primitives sharing accessor(s)Julien Duroure
2019-09-26glTF importer: big perf improvementJulien Duroure
2019-05-23glTF: update copyright yearJulien Duroure
2019-03-28glTF importer: targetNames (for shapekey names) has now priorityJulien Duroure
2019-03-28glTF importer: fix bug in shapekey importJulien Duroure
Thanks to Martin Capitanio (capnm) for the PR on upstream repo
2019-03-16glTF importer: get targetNames from extrasJulien Duroure
This is not glTF standard, but this workaround is accepted in a few tools
2019-02-22glTF importer: fix morph targets using specific indices listJulien Duroure
2019-02-22glTF importer: fix vertex color when using specific indices tabJulien Duroure
2019-02-21glTF importer: Fix bug importing some morph targsts with no POSITIONJulien Duroure
Do not create a shapekey in that case, ignoring animation on this morph target too
2019-02-07glTF importer: Fix vertex color importJulien Duroure
glTF stores vertexcolor data in linear, blender in sRGB
2018-12-15glTF importer: fix material import / vertex colorJulien Duroure
Fixed a bug when a same material sometimes uses vertex color, sometimes doesn't
2018-12-06glTF importer: Fix custom normals importJulien Duroure
2018-12-02glTF: fix vertex color import + export option tweaksJulien Duroure
2018-11-24Initial commit of glTF 2.0 importer/exporterJulien Duroure
Official Khronos Group Blender glTF 2.0 importer and exporter. glTF specification: https://github.com/KhronosGroup/glTF The upstream repository can be found here: https://github.com/KhronosGroup/glTF-Blender-IO Reviewed By: Bastien, Campbell Differential Revision: https://developer.blender.org/D3929