[Bf-blender-cvs] [9453b45e20f] sculpt-dev: Sculpt: Change default damping for cloth deform target

Pablo Dobarro noreply at git.blender.org
Wed Dec 16 21:36:55 CET 2020


Commit: 9453b45e20f5df0a386209135f9ed4e496b2d098
Author: Pablo Dobarro
Date:   Wed Dec 16 20:52:52 2020 +0100
Branches: sculpt-dev
https://developer.blender.org/rB9453b45e20f5df0a386209135f9ed4e496b2d098

Sculpt: Change default damping for cloth deform target

===================================================================

M	source/blender/editors/sculpt_paint/sculpt.c
M	source/blender/editors/sculpt_paint/sculpt_cloth.c

===================================================================

diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index e9ecfb0b00a..03977269e1a 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -6122,7 +6122,7 @@ static void do_brush_action(Sculpt *sd, Object *ob, Brush *brush, UnifiedPaintSe
     if (brush->deform_target == BRUSH_DEFORM_TARGET_CLOTH_SIM) {
       if (!ss->cache->cloth_sim) {
         ss->cache->cloth_sim = SCULPT_cloth_brush_simulation_create(
-            ss, 1.0f, 0.0f, 0.0f, false, true);
+            ss, 1.0f, 1.0f, 0.0f, false, true);
         SCULPT_cloth_brush_simulation_init(ss, ss->cache->cloth_sim);
       }
       SCULPT_cloth_brush_store_simulation_state(ss, ss->cache->cloth_sim);
diff --git a/source/blender/editors/sculpt_paint/sculpt_cloth.c b/source/blender/editors/sculpt_paint/sculpt_cloth.c
index 99083680711..a70d2d8f04a 100644
--- a/source/blender/editors/sculpt_paint/sculpt_cloth.c
+++ b/source/blender/editors/sculpt_paint/sculpt_cloth.c
@@ -195,7 +195,7 @@ static float cloth_brush_simulation_falloff_get(const Brush *brush,
 #define CLOTH_MAX_CONSTRAINTS_PER_VERTEX 1024
 #define CLOTH_SIMULATION_TIME_STEP 0.01f
 #define CLOTH_DEFORMATION_SNAKEHOOK_STRENGTH 0.35f
-#define CLOTH_DEFORMATION_TARGET_STRENGTH 0.01f
+#define CLOTH_DEFORMATION_TARGET_STRENGTH 0.5f
 #define CLOTH_DEFORMATION_GRAB_STRENGTH 0.1f
 
 static bool cloth_brush_sim_has_length_constraint(SculptClothSimulation *cloth_sim,



More information about the Bf-blender-cvs mailing list