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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-07-16 02:58:12 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-07-16 02:58:12 +0400
commit7c2fb421957da7d2e167283cd6c95a1a7a26c7f7 (patch)
treeac422765c21190baae07021c19d31ec8526fc2cd /source/blender/blenkernel/intern/effect.c
parenta8ce1a15860297e530cb71529066758eca8fa02b (diff)
2.5: Defaults
* Wave modifier speed 0.5 -> 0.25. * Particles even and random distribution on. * Particles normal velocity 0.0 -> 1.0. * Particles size 1.0 -> 0.05. * Particles draw emitter and material color on. * Field strength 0.0 -> 1.0 * Object drawing without material was not consistent with default material. * Panel title 13 -> 12 points.
Diffstat (limited to 'source/blender/blenkernel/intern/effect.c')
-rw-r--r--source/blender/blenkernel/intern/effect.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/effect.c b/source/blender/blenkernel/intern/effect.c
index 553fdfe530e..7951fcf1d3e 100644
--- a/source/blender/blenkernel/intern/effect.c
+++ b/source/blender/blenkernel/intern/effect.c
@@ -105,6 +105,7 @@ PartDeflect *object_add_collision_fields(void)
pd->pdef_sbift = 0.2f;
pd->pdef_sboft = 0.02f;
pd->seed = ((unsigned int)(ceil(PIL_check_seconds_timer()))+1) % 128;
+ pd->f_strength = 1.0f;
return pd;
}