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:
authorJorge Bernal <jbernalmartinez@gmail.com>2015-03-21 19:53:18 +0300
committerJorge Bernal <jbernalmartinez@gmail.com>2015-03-21 19:54:49 +0300
commit2744ce77dea394026bc524e68c687050bc8e0c28 (patch)
treefdc77402f2fb43a4d973ef778b85f9194fbc5121 /source/blender/blenloader/intern
parente1831990227ad43c9c41fca8f3e3639aaa222c2d (diff)
Revert part of D1074 related to acceleration taked into account.
It has been reverted because it was affecting obstacle avoidance (T44041). This fix should be backported to 2.74
Diffstat (limited to 'source/blender/blenloader/intern')
-rw-r--r--source/blender/blenloader/intern/versioning_270.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/source/blender/blenloader/intern/versioning_270.c b/source/blender/blenloader/intern/versioning_270.c
index ee015fa5652..adf5f93ae16 100644
--- a/source/blender/blenloader/intern/versioning_270.c
+++ b/source/blender/blenloader/intern/versioning_270.c
@@ -616,18 +616,6 @@ void blo_do_versions_270(FileData *fd, Library *UNUSED(lib), Main *main)
}
}
}
-
- if (!DNA_struct_elem_find(fd->filesdna, "bSteeringActuator", "float", "acceleration")) {
- for (ob = main->object.first; ob; ob = ob->id.next) {
- bActuator *act;
- for (act = ob->actuators.first; act; act = act->next) {
- if (act->type == ACT_STEERING) {
- bSteeringActuator *sact = act->data;
- sact->acceleration = 1000.f;
- }
- }
- }
- }
}
if (!MAIN_VERSION_ATLEAST(main, 273, 9)) {