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:
authorPhilipp Oeser <info@graphics-engineer.com>2021-11-16 11:58:47 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2021-11-16 11:58:47 +0300
commit6d35972b061149fda1adce105731d338c471ba87 (patch)
tree11ed75c8ce7ab0258e9db0af33352f9e36e34b6a /source/blender/io
parent57ed435deff66fb974fce66cbbd3db1ff5bee530 (diff)
parent7d985d6b69703d7eb515c776dd5911443cde59d3 (diff)
Merge branch 'blender-v3.0-release'
Diffstat (limited to 'source/blender/io')
-rw-r--r--source/blender/io/common/intern/abstract_hierarchy_iterator.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/io/common/intern/abstract_hierarchy_iterator.cc b/source/blender/io/common/intern/abstract_hierarchy_iterator.cc
index 28d5eb59e5e..bfd91620654 100644
--- a/source/blender/io/common/intern/abstract_hierarchy_iterator.cc
+++ b/source/blender/io/common/intern/abstract_hierarchy_iterator.cc
@@ -681,6 +681,15 @@ void AbstractHierarchyIterator::make_writers_particle_systems(
writer = ensure_writer(&hair_context, &AbstractHierarchyIterator::create_hair_writer);
break;
case PART_EMITTER:
+ case PART_FLUID_FLIP:
+ case PART_FLUID_SPRAY:
+ case PART_FLUID_BUBBLE:
+ case PART_FLUID_FOAM:
+ case PART_FLUID_TRACER:
+ case PART_FLUID_SPRAYFOAM:
+ case PART_FLUID_SPRAYBUBBLE:
+ case PART_FLUID_FOAMBUBBLE:
+ case PART_FLUID_SPRAYFOAMBUBBLE:
writer = ensure_writer(&hair_context, &AbstractHierarchyIterator::create_particle_writer);
break;
}