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
path: root/source
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-02-01 15:47:20 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-02-01 15:47:20 +0300
commit3e98fb0f389a66bd902a236e28702c6bd66b5442 (patch)
tree5ce9f8d5808b65ff41edabe2151ac049d927bb45 /source
parent1879af7d5cf2913e84ac76dd4927109a6b84e67e (diff)
- For particle path visualization, set the default number of steps
lower to save memory.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/particle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/particle.c b/source/blender/blenkernel/intern/particle.c
index e09d6a7f06c..cbf7f385dbb 100644
--- a/source/blender/blenkernel/intern/particle.c
+++ b/source/blender/blenkernel/intern/particle.c
@@ -2869,10 +2869,10 @@ static void default_particle_settings(ParticleSettings *part)
part->integrator= PART_INT_MIDPOINT;
part->phystype= PART_PHYS_NEWTON;
- part->hair_step= 10;
+ part->hair_step= 5;
part->keys_step= 5;
- part->draw_step= 4;
- part->ren_step= 6;
+ part->draw_step= 2;
+ part->ren_step= 3;
part->adapt_angle= 5;
part->adapt_pix= 3;
part->kink_axis= 2;