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
2022-08-06glTF exporter: add bufferView Target at exportJulien Duroure
2022-07-07glTF importer/exporter: Manage some official Khronos Extensions about MaterialsJulien Duroure
KHR_materials_ior KHR_materials_sheen KHR_materials_specular KHR_materials_transmission KHR_materials_variants KHR_materials_emissive_strength KHR_materials_volume Documentation update is still in progress
2022-03-13glTF exporter: Manage active UVMap correclty, when there is no UVMap used in ↵Julien Duroure
node tree
2022-03-02glTF exporter: Big refactoringJulien Duroure
- precompute tree before export - manage collections / instances / linked - use custom cache to avoid name collision - animations are baked from world matrix More info on https://github.com/KhronosGroup/glTF-Blender-IO
2022-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2021-02-25gltf exporter: new feature: export 'Loose Points' and 'Loose Edges'Julien Duroure
2020-10-08glTF importer/exporter: fix for material_index/material slotsJulien Duroure
2020-09-18glTF exporter: support KHR_materials_unlitJulien Duroure
2020-09-17glTF exporter: option to export placeholder of materialsJulien Duroure
* export all materials used by object exported * not export materials at all (mesh will be exported as a single primitive) * export placeholder: materials are not exported, but slots are still used to separate mesh into primitives
2020-09-05glTF exporter: perf: use numpy to speedup primitive extractJulien Duroure
2020-07-21glTF exporter: performance: using numpyJulien Duroure
Thanks scurest!
2020-04-11glTF exporter: perf: use foreach_{get,set} for image encodingJulien Duroure
We can now remove compositor code, no more needed
2020-03-20glTF export: manage collection instances / linked collection / armature proxyJulien Duroure
2020-03-05glTF exporter: avoid crash using compositor rendering for image generationJulien 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
2019-09-13glTF exporter: Fix skinning space / Inverse Bind MatrixJulien Duroure
2019-08-23glTF exporter: fix shapekeys animation exportJulien Duroure
Animation channels must be sorted in exactly same order than shapekeys
2019-06-14glTF exporter: fix regression about exporting with applied modifiers, cache ↵Julien Duroure
enhancement
2019-06-06glTF exporter: Manage material at object level: instances with different colorsJulien Duroure
2019-05-23glTF: update copyright yearJulien Duroure
2019-05-18Updates for removal of mesh.show_double_sidedBrecht Van Lommel
Change glTF to use the new material backface culling option, which is more correct since the Blender double sided option was about lighting only, not culling.
2019-03-12glTF exporter: Deduplicate cameras, animation sampler and accessorsJulien Duroure
2019-02-21glTF exporter: various fixes / enhancementsJulien Duroure
* export double-sided mesh flag * add export time logging * Enhacement of export at current frame / frame 0 management
2019-01-09glTF export: enhancement & fixes:Julien Duroure
* implement KHR_materials_unlit export * Fix primitive restart values * Fix jpg uri/mime type * Fix bug when image has no color channels * Check animation has actions * Ignore meshes without primitives * Fix materials when not selected in export settings * Improve error message for invalid animation target type * Animation with errors are ignored, but export continues * Export of BaseColorFactor
2019-01-03glTF exporter: various fixes/enhancements:Julien Duroure
* enhancement for vertex weights export * export animation only if checkbox is ticked * use unsigned short or unsigned int for indices * Fix T60012 metallic and roughness image export (channels not in same image)
2018-12-02glTF: Fix light export + export options refactoringJulien 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