From a5b2841aa0c4b1b90d29077ba174ed31ae8ee4d9 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Thu, 2 Jul 2015 13:53:36 -0300 Subject: RNA Doc: Camera shift affects all cameras (perspective, orthographic and even panoramic) --- source/blender/makesrna/intern/rna_camera.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/makesrna/intern/rna_camera.c') diff --git a/source/blender/makesrna/intern/rna_camera.c b/source/blender/makesrna/intern/rna_camera.c index 9aec0ea43cc..b82f3c88c56 100644 --- a/source/blender/makesrna/intern/rna_camera.c +++ b/source/blender/makesrna/intern/rna_camera.c @@ -281,14 +281,14 @@ void RNA_def_camera(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "shiftx"); RNA_def_property_range(prop, -10.0f, 10.0f); RNA_def_property_ui_range(prop, -2.0, 2.0, 1, 3); - RNA_def_property_ui_text(prop, "Shift X", "Perspective Camera horizontal shift"); + RNA_def_property_ui_text(prop, "Shift X", "Camera horizontal shift"); RNA_def_property_update(prop, NC_OBJECT | ND_DRAW, "rna_Camera_update"); prop = RNA_def_property(srna, "shift_y", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "shifty"); RNA_def_property_range(prop, -10.0f, 10.0f); RNA_def_property_ui_range(prop, -2.0, 2.0, 1, 3); - RNA_def_property_ui_text(prop, "Shift Y", "Perspective Camera vertical shift"); + RNA_def_property_ui_text(prop, "Shift Y", "Camera vertical shift"); RNA_def_property_update(prop, NC_OBJECT | ND_DRAW, "rna_Camera_update"); prop = RNA_def_property(srna, "dof_distance", PROP_FLOAT, PROP_DISTANCE); -- cgit v1.2.3