From be016daf15de7c1581a096b17c1380a35d742aa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20T=C3=B6nne?= Date: Wed, 17 Sep 2014 13:49:10 +0200 Subject: Reduced the length threshold for disabling short hairs from 0.1 to 0.01. --- source/blender/blenkernel/intern/particle_system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/blenkernel/intern/particle_system.c b/source/blender/blenkernel/intern/particle_system.c index 6397c3739d9..8215c808c42 100644 --- a/source/blender/blenkernel/intern/particle_system.c +++ b/source/blender/blenkernel/intern/particle_system.c @@ -3984,7 +3984,7 @@ static bool psys_hair_use_simulation(ParticleData *pa, float max_length) * The hair system should always make sure the hair segments have reasonable length ratios, * but this can happen in old files when e.g. cutting hair. */ - const float min_length = 0.1f * max_length; + const float min_length = 0.01f * max_length; HairKey *key; int k; -- cgit v1.2.3