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-04FBX IO: increase sub-version number after filebrowser merge.Bastien Montagne
Changes in UI are significant enough to justify it.
2019-09-04Fix T69482: Fbx export crashes blenderPhilipp Oeser
Reviewers: Severin Maniphest Tasks: T69482 Differential Revision: https://developer.blender.org/D5671
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-09-02Fix T69358: Missing Quaternions interpolqtion in importer.Bastien Montagne
Based on investigation and patch by Yannick (@kschoice), many thanks!
2019-08-29Add optional subdivision surface support to the FBX exporterSamuli Raivio
Add option 'Export Subdivision Surface' to the FBX exporter (disabled by default). When enabled the exporter will write the **last active Catmull-Clark subdivision surface modifier** as FBX properties instead of applying it. Edge crease data is also written to the FBX file if 'Use Creases' is enabled in the subsurf modifier. Reviewers: mont29 Tags: #add-ons Differential Revision: https://developer.blender.org/D4982
2019-08-21Fix T68967: Export to .fbx error.Bastien Montagne
Handle more gracefully the case where we cannot compute tangent space for a mesh.
2019-07-31Spelling fixes in comments and descriptions, patch by luzpazBrecht Van Lommel
Differential Revision: https://developer.blender.org/D5240
2019-07-15Update wiki_url to new manual pagesAaron Carlisle
2019-06-27Fix potential issues with absolute-like paths in expected-relative properties.Bastien Montagne
Relative filepath having a 'absolute look' (starting with a path separator) can lead to recursively checking for the whole root! This is nasty, so try to avoid it by making relative paths actually relative. Based on D5143 (report and patch) by andreas atteneder (@atti), thanks!
2019-05-29FBX: Fix ShapeKeys not being exported anymore for rigged meshes.Bastien Montagne
Not sure when that mistake was introduced, Armature modifier is not considered a 'real' modifier to be baked, from FBX exporter point of view... Reported/followup from T64994.
2019-05-29Fix T64833: FBX Import fails with long names.Bastien Montagne
Classical stupid issues when trying to shorten an utf8 string to match a given bytes length... ;)
2019-05-27Fix T64994: 2.80 - Py API: Exporters: applied modifiers geometry looses most ↵Bastien Montagne
of orig custom data layers. Now we can get full-featured mesh with new system too.
2019-05-24Fix T65065: FBX import principled alpha 0.Bastien Montagne
3DSMax can produce pure white `TransparentColor` with (default, from template) `TransparencyFactor` of 0.0... Looks like we are supposed to use `Opacity` then... sigh...
2019-05-23Fix T64999: FBX export fails with empty material slot.Bastien Montagne
We cannot reliably use `mesh.materials`, since those might be empty when materials are only assigned/linked to the object...
2019-05-20Fix T64853: FBX fail to export after recent changesBrecht Van Lommel
2019-05-20Update for removal of image.use_alphaBrecht Van Lommel
2019-05-17Update for Depsgraph API changesPhilipp Oeser
Reviewers: sergey Differential Revision: https://developer.blender.org/D4883
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-05-15FBX IO: use new Principled BSDF Alpha option for transparency.Bastien Montagne
Much better option than using Principled's Transmission setting. Related to T64609.
2019-05-14FBX: Cleanup minor comment fix.Bastien Montagne
2019-05-11Revert "Fix (unreported) broken export due to API change."Bastien Montagne
This reverts commit 55d0ff708c617f190fd898c37f90b70a2fd6a293.
2019-05-11Revert "Fix (unreported) broken FBX import due to API change."Bastien Montagne
This reverts commit 9524a08a60cf570e9b0540a6ae195a269b403817.
2019-05-11Fix (unreported) broken FBX import due to API change.Bastien Montagne
Sequell to rB55d0ff708c617f, grrrrr....
2019-05-11Tentative fix for T59850: FBX: wrong alpha in some material imported by Unity.Bastien Montagne
Looks like FBX also likes to make a mess with materials' behaviors... Many thanks to Thomas Chollet (@thomasch) for his help understanding how Unity handles materials' alpha when importing from FBX. Hopefully this won't break any other importer... ;)
2019-05-11Fix (unreported) broken export due to API change.Bastien Montagne
Please update scripts when you do such changes...
2019-03-27Fix T62984: Backtrace when importing FBX file from the Unity asset store.Bastien Montagne
Although we had no way to reproduce the issue, that fix indeed seems needed from code logic point of view. Investigation and patch by Pete Chown (@PeteX), thanks!
2019-03-25FBX Export: Make empty shape keys exportableBastien Montagne
Currently all empty shape keys are not exported when exporting as FBX. The reason for this is that empty shape keys cause issues like crashing Unity. This can cause confusion because it is done without explanation. This patch fixes this by making the shape keys technically empty while still keeping them intact and working as shape keys. Reviewers: campbellbarton, mont29 Reviewed By: mont29 Tags: #bf_blender_2.8, #addons Differential Revision: https://developer.blender.org/D4496
2019-03-13Disable/remove 'use_mesh_modifiers_render' in FBX/OBJ for now.Bastien Montagne
We need a way for add-ons to generate a temp render depsgraph and evaluate it, for this to work again, with new Blender 2.8 design.
2019-03-05Fix T62224: FBX importer dosen't import uv-maps correctly when there is 2 or ↵Bastien Montagne
more maps. Do not do 'smart' init of our UV/VCol data layers, this is lost computation and can generate issues when not all items are explicitely defined in FBX file.
2019-02-28Revert "FBX Exporter: Support special case of constant interpolation"Dalai Felinto
This reverts commit 96a51679699c75e1a08f2d91b2b055bf6430e9d1. My tests fail to test this properly. They key elements here are not Blender's keyframes. I need to tackle this differently.
2019-02-28FBX Exporter: Support special case of constant interpolationDalai Felinto
If all the keyframes were set to constant interpolation. Reviewers: mont29 Differential Revision: https://developer.blender.org/D4429
2019-02-06Cleanup/fix T61233: FBX export error if action key exist.Bastien Montagne
Please do basic grep on whole source repo (including add-ons & co) when removing RNA property (or any other change affecting the API)...
2019-02-01Fix T61096: fbx import crashes on file from mixamo.Bastien Montagne
Blender only supports 8 UVMaps per mesh, avoid crashing addon when trying to import more.
2019-01-24Fix T51140: FBX import fails to read file exported from Max.Bastien Montagne
Usual crap with PoS of FBX... feeling bad though, that report skipped out of my radar for too long. :|
2019-01-24Partially fix T58877: FBX Importer Doesn't Respect Size and Hierarchy.Bastien Montagne
Quiet hard to believe, but looks like that critical recursive call has never been there... This basically broke any real-life case of 'objects parented to bones' relationships. Scaling issues remain though, this will be for some other time.
2019-01-12Fix T57308: (hopefully) FBX export UV islands broken.Bastien Montagne
Looks like we need to not merge UVs from different islands into same set of coordinates in the 'compressed' mapped storage of FBX data, seems to be the way for that piece of crap of a wanabe format to convey islands concept... Gets the code even more cryptic, yay!
2018-12-19Merge branch 'master' into blender2.8Campbell Barton
2018-12-19Fix invalid string comparisonsCampbell Barton
Identity checks should never be used with strings, it may fail based on Python's interning logic.
2018-12-13FBX export: skip special properties when exporting custom propertiesPhilipp Oeser
'_RNA_UI' (and rna runtime properties) should not be included, these would have been included as string properties causing errors on reimport backport rBAe4f4053de64e (fix for T59202) from 2.8 branch Differential Revision: https://developer.blender.org/D4068
2018-12-12FBX export: skip special properties when exporting custom propertiesPhilipp Oeser
'_RNA_UI' (and rna runtime properties) should not be included, these would have been included as string properties causing errors on reimport Fixes T59202 Differential Revision: https://developer.blender.org/D4068
2018-12-11Fix FBX export with deforming armature.Bastien Montagne
Indirectly reported in T59162. We do not have access to render depsgraph currently, so we need to work on `show_viewport` option of modifiers we want to hide when generating temp export mesh, instead of `show_render` one...
2018-12-07Fix T58881: FBX error exporting tangent spaceCampbell Barton
2018-11-28Use collection and instance terminology in Python APISergey Sharybin
This follows naming convention agreed on in T56648.
2018-11-09FBX export: Add back (partial) support for Batch exporting.Bastien Montagne
Also extended a bit the options for batch exporting (collections give more ways to organize your scene). And added non-batch option to only export objects from active Collection. 'partial' support because until we can force generate depsgraph for inactive view layers, we cannot support exporting instances (dupli objects etc.) for batches. TODO: move the batch logic to IO helpers, that could be another decorator, to easily add the same feature to all exporters able to export several objects...
2018-11-08Update for changes in Blender's APICampbell Barton
2018-11-06Updates for change in ViewLayer RNA API.Bastien Montagne
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-17Fix FBX exporter since recent material changesDalai Felinto