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:
authorMatt Ebb <matt@mke3.net>2005-10-27 15:28:43 +0400
committerMatt Ebb <matt@mke3.net>2005-10-27 15:28:43 +0400
commitdd409399ec1db31589fede54dc89727d4a1bcaf0 (patch)
treef61c615813b6ce8358b339416c571fc333af214a /source/blender/makesdna/DNA_camera_types.h
parentc75336540372795b6e203f068416f72bd3cce989 (diff)
Camera visualisation changes and features (from tuho)
* Made the in-camera view dashed border lines less jarring and disturbing. We will give it some testing here, feedback is welcome. * Showing the title safe zone is now an option in the camera edit buttons. It's not very useful if you're not making stuff for video/broadcast so you can turn it off. * Passepartout is now a flag per camera, rather than per scene. It never really belonged in the render buttons or as Scene data, though it could be up for debate whether it's better as camera data or view data (i.e. in the view properties panel). Old files get converted over nicely with this so if you had passepartout on before, it stays on the cameras. * Added an option to show the current camera's name at the bottom of the in-camera view, to help keep track of which one you're seeing when using multiple cameras. * In the 3D View (non-camera view) the active camera is drawn with a solid line as before, while non-active cameras are drawn with a dashed line, to help visualise which one is active.
Diffstat (limited to 'source/blender/makesdna/DNA_camera_types.h')
-rw-r--r--source/blender/makesdna/DNA_camera_types.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_camera_types.h b/source/blender/makesdna/DNA_camera_types.h
index 2041aae3429..cc7ec27f815 100644
--- a/source/blender/makesdna/DNA_camera_types.h
+++ b/source/blender/makesdna/DNA_camera_types.h
@@ -69,8 +69,12 @@ typedef struct Camera {
/* flag */
#define CAM_SHOWLIMITS 1
#define CAM_SHOWMIST 2
+#define CAM_SHOWPASSEPARTOUT 4
+#define CAM_SHOWTITLESAFE 8
+#define CAM_SHOWNAME 16
+
/* yafray: dof sampling switch */
-#define CAM_YF_NO_QMC 4
+#define CAM_YF_NO_QMC 512
#ifdef __cplusplus