Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2018-06-07 19:35:07 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2018-06-07 20:01:45 +0300
commit28817c82f133b98d58dab06591347200da855817 (patch)
tree98053eaa35c936792db28a4d260986db2e39e1c7 /source/blender/alembic
parent9a873d0ab2448b0fd059e87f339db07dc648510f (diff)
Alembic export: no need to check particle's mesh_final on export
Hair writing is still not working properly, though, but at least now samples are written at all.
Diffstat (limited to 'source/blender/alembic')
-rw-r--r--source/blender/alembic/intern/abc_hair.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/alembic/intern/abc_hair.cc b/source/blender/alembic/intern/abc_hair.cc
index b5adc4486a7..be7ad90dc31 100644
--- a/source/blender/alembic/intern/abc_hair.cc
+++ b/source/blender/alembic/intern/abc_hair.cc
@@ -72,13 +72,6 @@ void AbcHairWriter::do_write()
if (!m_psys) {
return;
}
-
- ParticleSystemModifierData *psmd = psys_get_modifier(m_object, m_psys);
-
- if (!psmd->mesh_final) {
- return;
- }
-
Mesh *mesh = mesh_get_eval_final(m_settings.depsgraph, m_settings.scene, m_object, CD_MASK_MESH);
BKE_mesh_tessface_ensure(mesh);