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:
authorSebastián Barschkis <sebbas@sebbas.org>2020-03-06 14:26:22 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-03-06 14:26:47 +0300
commite65f5c07b04e592dc7a5490ebc5f271d52729b48 (patch)
tree564ee68cf92f35e16d11319e22273891ba8f46bb /release/scripts/startup/bl_ui/properties_physics_fluid.py
parent79558a581de707413041ab6f6af94ac5309b1dba (diff)
Fluid: Added missing UI options for effector objects
UI was missing some of the new functionality introduced in a5c4a44df67e.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_physics_fluid.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_fluid.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_fluid.py b/release/scripts/startup/bl_ui/properties_physics_fluid.py
index 71170c04494..ba21fe47519 100644
--- a/release/scripts/startup/bl_ui/properties_physics_fluid.py
+++ b/release/scripts/startup/bl_ui/properties_physics_fluid.py
@@ -262,12 +262,16 @@ class PHYSICS_PT_settings(PhysicButtonsPanel, Panel):
row = layout.row()
row.prop(effector_settings, "effector_type")
- flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=False)
+ grid = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=False)
- col = flow.column()
+ col = grid.column()
+ col.prop(effector_settings, "subframes", text="Sampling Substeps")
+ col.prop(effector_settings, "surface_distance", text="Surface Thickness")
+
+ col = grid.column()
+ col.prop(effector_settings, "use_effector", text="Use Effector")
col.prop(effector_settings, "use_plane_init", text="Is Planar")
- col.prop(effector_settings, "surface_distance", text="Surface Thickness")
col.prop(effector_settings, "delete_in_obstacle", text="Delete In Obstacle")
if effector_settings.effector_type == 'GUIDE':