Fluid: Removed Empty Space option for liquid domains

The option only makes sense for gas domains where there is some density.
This commit is contained in:
Sebastián Barschkis 2020-03-30 17:34:16 +02:00
parent 1280f3c0ae
commit 6f15bc3b52
1 changed files with 2 additions and 1 deletions

View File

@ -194,7 +194,8 @@ class PHYSICS_PT_settings(PhysicButtonsPanel, Panel):
col.prop(domain, "gravity", text="Gravity")
col = flow.column()
col.prop(domain, "clipping", text="Empty Space")
if PhysicButtonsPanel.poll_gas_domain(context):
col.prop(domain, "clipping", text="Empty Space")
col.prop(domain, "delete_in_obstacle", text="Delete In Obstacle")
if domain.cache_type == 'MODULAR':