Blender 2.90: Import & Export¶
Alembic¶
- Matrices with negative scale can now be properly interpolated. This means that it is now possible to take an Alembic file that was saved at 30 FPS and load it into a 24 FPS Blender file, even when there are mirrored objects. (a5e176a8ed and demo videos in D8048).
- Object data is now exported with the object data name
(0d744cf673).
Previously the Alembic exporter exported a mesh object to
{object.name}/{object.name}Shape
. Now it exports to{object.name}/{mesh.name}
instead. The same change also applies to other object data types. - Spaces, periods, and colons in the names of particle systems are now replaced with underscores (f106369ce8). Other types already had spaces, periods, and colons replaced by underscores, and now particle systems are exported with the same naming convention.
- Blender now always exports transforms as as "inheriting", as Blender has no concept of parenting without inheriting the transform (2dff08c8ce). Previously only objects with an actual parent were marked as "inheriting", and parentless objects as "non-inheriting". However, certain packages (for example USD's Alembic plugin) are incompatible with non-inheriting transforms and will completely ignore such transforms, placing all such objects at the world origin.
- Blender now exports Alembic using the same approach as USD. This means
that Alembic and USD files are more consistent, and that it's easier
to solve (or even prevent) certain bugs
(2917df21ad).
Changes are:
- Duplicated objects now have a unique numerical suffix (also see above).
- Matrices are computed differently. This fixes T71395, but otherwise should produce the same result as before (but with simpler, more predictable code).
- Alembic's obsolete HDF5 compression format has never been officially supported by Blender, but only existed as an optional build-time option that was disabled for all Blender releases. The support for HDF5 has now been completely removed (0c38436227, 0102b9d47e).
USD¶
- Hair particle systems are now exported using the Particle System name. Previously this was done with the Particle Settings name. This gives more control over the final name used in USD and is consistent with the Alembic exporter. (fc0842593f).
Instances¶
USD and Alembic export can now correctly export nested instances. Further, numbers used to identify duplicated (i.e. instanced) objects have been reversed (98bee41c8a).
This produces hierarchies like this:
Triangle
|--TriangleMesh
|--Empty-1
| +--Pole-1-0
| |--Pole
| +--Block-1-1
| +--Block
|--Empty
| +--Pole-0
| |--Pole
| +--Block-1
| +--Block
|--Empty-2
| +--Pole-2-0
| |--Pole
| +--Block-2-1
| +--Block
+--Empty-0
+--Pole-0-0
|--Pole
+--Block-0-1
+--Block
It is now clearer that Pole-2-0
and Block-2-1
are instanced by
Empty-2
. Before Blender 2.90 they would have been named Pole-0-2
and Block-1-2
.
glTF 2.0¶
- Importer
- Enhancements
- Implement KHR_materials_clearcoat (64d3439667)
- Implement KHR_mesh_quantization (4b656b65f8)
- Improve the layout of nodes in the material graph (5b4ed4e574)
- Add option to glue pieces of a mesh together (c7eda7cb49)
- Code cleanup & refactoring & performance (bb4dc6f1da, 9fd05ef466)
- Fixes
- Fix occlusion textures (a29e15e11e)
- Fix Crash on undo after glTF import (d777821fd6)
- Enhancements
- Exporter
- Enhancements
- Add joint / pre /post in hook for extensions (e3bb132d1f, 40db41a902)
- Allow combining different-sized textures (eg for ORM) (09508f2dcf)
- Add check rotation + delta rotation both animated (ee2a0831d8)
- Code clean up & refactoring & performance (2d8c1b2c61, 01186b0df9, 3ea1673580, 9313b3a155, 03e3ef7f71)
- Refactoring Normals export (bd8e1f3e57, 422c47c5f7, 52f88967a6)
- Add support for use_inherit_rotation and inherit_scale (63dd8498ac)
- Export curve/surface/text objects as meshes (47ea656bdd)
- Fixes
- Prevent infinite recursion when mesh is skinned and parenting to same bone (72227fc13b)
- Make sure rotation are normalized (fac4c6443b)
- Add check when armature animation is binded to mesh object (61f7f5f3a5)
- Fix extension panel appearance (aea05413b7)
- Fix draco UV export (e47d2bcfad)
- Fix lamp parented to bone (1d29fc5b91)
- Fix saving use_selection option in .blend file (7cbb383d22)
- Fix exporting with option "group by NLA" (7a0a9182c8)
- Fix exporting EXTEND textures (cbad9300d7)
- Fix export alpha scalar value (not coming from texture) (48c8d6c230)
- Fix exporting
aspectRatio
for Perspective Cameras (2b4bf943d0) - Fix to generate valid file when zero-weight verts (386bb5eaa4)
- Enhancements