-
- Downloads
Basic Alembic support
All in all, this patch adds an Alembic importer, an Alembic exporter, and a new CacheFile data block which, for now, wraps around an Alembic archive. This data block is made available through a new modifier ("Mesh Sequence Cache") as well as a new constraint ("Transform Cache") to somewhat properly support respectively geometric and transformation data streaming from alembic caches. A more in-depth documentation is to be found on the wiki, as well as a guide to compile alembic: https://wiki.blender.org/index.php/ User:Kevindietrich/AlembicBasicIo. Many thanks to everyone involved in this little project, and huge shout out to "cgstrive" for the thorough testings with Maya, 3ds Max, Houdini and Realflow as well as @fjuhec, @jensverwiebe and @jasperge for the custom builds and compile fixes. Reviewers: sergey, campbellbarton, mont29 Reviewed By: sergey, campbellbarton, mont29 Differential Revision: https://developer.blender.org/D2060
Showing
- CMakeLists.txt 69 additions, 0 deletionsCMakeLists.txt
- build_files/build_environment/install_deps.sh 180 additions, 7 deletionsbuild_files/build_environment/install_deps.sh
- build_files/cmake/Modules/FindAlembic.cmake 70 additions, 0 deletionsbuild_files/cmake/Modules/FindAlembic.cmake
- build_files/cmake/Modules/FindHDF5.cmake 69 additions, 0 deletionsbuild_files/cmake/Modules/FindHDF5.cmake
- build_files/cmake/config/blender_full.cmake 1 addition, 0 deletionsbuild_files/cmake/config/blender_full.cmake
- build_files/cmake/config/blender_lite.cmake 1 addition, 0 deletionsbuild_files/cmake/config/blender_lite.cmake
- build_files/cmake/config/bpy_module.cmake 1 addition, 0 deletionsbuild_files/cmake/config/bpy_module.cmake
- build_files/cmake/macros.cmake 9 additions, 0 deletionsbuild_files/cmake/macros.cmake
- release/scripts/modules/sys_info.py 7 additions, 0 deletionsrelease/scripts/modules/sys_info.py
- release/scripts/startup/bl_ui/properties_constraint.py 13 additions, 0 deletionsrelease/scripts/startup/bl_ui/properties_constraint.py
- release/scripts/startup/bl_ui/properties_data_modifier.py 19 additions, 0 deletionsrelease/scripts/startup/bl_ui/properties_data_modifier.py
- release/scripts/startup/bl_ui/space_info.py 4 additions, 0 deletionsrelease/scripts/startup/bl_ui/space_info.py
- source/blender/CMakeLists.txt 4 additions, 0 deletionssource/blender/CMakeLists.txt
- source/blender/alembic/ABC_alembic.h 110 additions, 0 deletionssource/blender/alembic/ABC_alembic.h
- source/blender/alembic/CMakeLists.txt 81 additions, 0 deletionssource/blender/alembic/CMakeLists.txt
- source/blender/alembic/intern/abc_camera.cc 162 additions, 0 deletionssource/blender/alembic/intern/abc_camera.cc
- source/blender/alembic/intern/abc_camera.h 61 additions, 0 deletionssource/blender/alembic/intern/abc_camera.h
- source/blender/alembic/intern/abc_curves.cc 355 additions, 0 deletionssource/blender/alembic/intern/abc_curves.cc
- source/blender/alembic/intern/abc_curves.h 65 additions, 0 deletionssource/blender/alembic/intern/abc_curves.h
- source/blender/alembic/intern/abc_customdata.cc 379 additions, 0 deletionssource/blender/alembic/intern/abc_customdata.cc
Loading
Please register or sign in to comment