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:
authorTon Roosendaal <ton@blender.org>2004-04-29 21:13:50 +0400
committerTon Roosendaal <ton@blender.org>2004-04-29 21:13:50 +0400
commit33abfc8015777049c5cb09b20c01cd5b909ab60d (patch)
tree825ac1093f35243839f710fd8b032be7b9e20b34
parent7134022e533ef0eda66d18d308f7bca2003dcf4f (diff)
World->physicsEngine is SUMO when you create new one.
-rw-r--r--source/blender/blenkernel/intern/world.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/world.c b/source/blender/blenkernel/intern/world.c
index d2cd0307c2c..2f5b440a33a 100644
--- a/source/blender/blenkernel/intern/world.c
+++ b/source/blender/blenkernel/intern/world.c
@@ -98,6 +98,8 @@ World *add_world(char *name)
wrld->aoenergy= 1.0;
wrld->aobias= 0.05;
+ wrld->physicsEngine= WOPHY_SUMO;
+
return wrld;
}