Skip to content
Snippets Groups Projects
Commit a1d5eacb authored by Brecht Van Lommel's avatar Brecht Van Lommel
Browse files

Fix #29043: netrender error with fluid sim modifier, patch by Vladimir G.

parent 2cbfb0e2
No related branches found
Tags
No related merge requests found
...@@ -113,7 +113,7 @@ def process(paths): ...@@ -113,7 +113,7 @@ def process(paths):
for object in bpy.data.objects: for object in bpy.data.objects:
for modifier in object.modifiers: for modifier in object.modifiers:
if modifier.type == 'FLUID_SIMULATION' and modifier.settings.type == "DOMAIN": if modifier.type == 'FLUID_SIMULATION' and modifier.settings.type == "DOMAIN":
processFluid(settings) processFluid(modifier.settings)
elif modifier.type == "CLOTH": elif modifier.type == "CLOTH":
processPointCache(modifier.point_cache) processPointCache(modifier.point_cache)
elif modifier.type == "SOFT_BODY": elif modifier.type == "SOFT_BODY":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment