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:
authorCampbell Barton <ideasman42@gmail.com>2010-09-11 08:39:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-11 08:39:00 +0400
commitb2b08692124cac0571e40f8bbf2b92fde857e8b9 (patch)
treeba53ed3a09b10fd5ae0faa572a7b5b74316e9d7f /source/blender/makesdna
parent63a8056839b0b43c4e2a0f24ca894ea7912ab234 (diff)
- camera max zoom limit was inconsistent
- camera pan now follows the mouse
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_view3d_types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_view3d_types.h b/source/blender/makesdna/DNA_view3d_types.h
index 520fc56162c..f692c80f81f 100644
--- a/source/blender/makesdna/DNA_view3d_types.h
+++ b/source/blender/makesdna/DNA_view3d_types.h
@@ -299,6 +299,9 @@ typedef struct View3D {
/* may want to use 1 for select ?*/
#define V3D_BGPIC_EXPANDED 2
+#define RV3D_CAMZOOM_MIN -30
+#define RV3D_CAMZOOM_MAX 600
+
#endif