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:
authorCampbell Barton <ideasman42@gmail.com>2013-09-24 16:43:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-24 16:43:25 +0400
commitfa16aeed2dc1636fb81229041ffd233c0abbf624 (patch)
tree4370c4d77c1734faad5641476a5201e118d4d6a6 /source
parentc037e766fa45b841c9379542f1fd9ac6542fabe6 (diff)
postpone crazy-space changes until next release, causes issues with extrude which need further fixes.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/transform/transform_conversions.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c
index ebc61753119..a4299fe688c 100644
--- a/source/blender/editors/transform/transform_conversions.c
+++ b/source/blender/editors/transform/transform_conversions.c
@@ -2228,7 +2228,13 @@ static void createTransEditVerts(TransInfo *t)
/* if we still have more modifiers, also do crazyspace
* correction with quats, relative to the coordinates after
* the modifiers that support deform matrices (defcos) */
- if ((totleft > 0) || (totleft == -1)) {
+
+#if 0 /* TODO, fix crazyspace+extrude so it can be enabled for general use - campbell */
+ if ((totleft > 0) || (totleft == -1))
+#else
+ if (totleft > 0)
+#endif
+ {
mappedcos = crazyspace_get_mapped_editverts(t->scene, t->obedit);
quats = MEM_mallocN(em->bm->totvert * sizeof(*quats), "crazy quats");
crazyspace_set_quats_editmesh(em, defcos, mappedcos, quats);