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:
authorMiika Hamalainen <blender@miikah.org>2013-08-03 13:46:38 +0400
committerMiika Hamalainen <blender@miikah.org>2013-08-03 13:46:38 +0400
commit91d148b8914bb198a78c3789fa39c2850d37d219 (patch)
tree3f2b3a60c833bf7f65b8684427e08421009f5aa7 /release
parente131447582a35fe4102f63b7d387d7cd57aa42b7 (diff)
Dynamic Paint: Added a new "smoothness" parameter for waves.
It greatly helps getting rid of that "noise" that occurs if you use really steep objects (like cubes) as a brush. New default value is 1.0 which is just high enough to only get rid of the sharpest spikes, so if you want really smooth waves it's better use higher values. This also seems to "fix" bug [#35413].
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py b/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
index 7ee63ee7a2f..75c4caa57bd 100644
--- a/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
+++ b/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
@@ -201,6 +201,7 @@ class PHYSICS_PT_dp_advanced_canvas(PhysicButtonsPanel, Panel):
col = split.column(align=True)
col.prop(surface, "wave_damping")
col.prop(surface, "wave_spring")
+ col.prop(surface, "wave_smoothness")
layout.separator()
layout.prop(surface, "brush_group")