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:
authorBenoit Bolsee <benoit.bolsee@online.be>2008-09-17 02:52:42 +0400
committerBenoit Bolsee <benoit.bolsee@online.be>2008-09-17 02:52:42 +0400
commit9b7d40dbae1be5aa18894ffbc8f97a4a8c4c6fdd (patch)
treeed4cdb49c0afaf07e1b301f9e9d18e8a791b9f4e /source/blender/blenloader/intern/readfile.c
parent73c8d76ba406a7753b8b6aaa1e304d9e311f816a (diff)
BGE patch: bullet buttons UI change after discussion with Erwin: use a drop down instead of a series of buttons. Introduction of soft body option.
Diffstat (limited to 'source/blender/blenloader/intern/readfile.c')
-rw-r--r--source/blender/blenloader/intern/readfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 6add88284c2..f3f1a99cdbf 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -7794,7 +7794,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
if (main->versionfile < 247 || (main->versionfile == 247 && main->subversionfile < 2)){
Object *ob;
for(ob = main->object.first; ob; ob= ob->id.next) {
- ob->gameflag |= OB_PHYSICS;
+ ob->gameflag |= OB_COLLISION;
ob->margin = 0.06;
}
}