[Bf-blender-cvs] [08cc4bf] master: Small change for the new Lat/Long properties.

Thomas Dinges noreply at git.blender.org
Thu Jan 15 08:24:46 CET 2015


Commit: 08cc4bfa615e4f58ca9799730c532edbe35c449e
Author: Thomas Dinges
Date:   Thu Jan 15 08:23:27 2015 +0100
Branches: master
https://developer.blender.org/rB08cc4bfa615e4f58ca9799730c532edbe35c449e

Small change for the new Lat/Long properties.

We use upper case for properties.

===================================================================

M	intern/cycles/blender/addon/properties.py

===================================================================

diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 10c5f2b..5f8a55d 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -583,28 +583,28 @@ class CyclesCameraSettings(bpy.types.PropertyGroup):
                 default=10.5,
                 )
         cls.latitude_min = FloatProperty(
-                name="Min latitude",
+                name="Min Latitude",
                 description="Minimum latitude (vertical angle) for the equirectangular lens",
                 min=-0.5 * math.pi, max=0.5 * math.pi,
                 subtype='ANGLE',
                 default=-0.5 * math.pi,
                 )
         cls.latitude_max = FloatProperty(
-                name="Max latitude",
+                name="Max Latitude",
                 description="Maximum latitude (vertical angle) for the equirectangular lens",
                 min=-0.5 * math.pi, max=0.5 * math.pi,
                 subtype='ANGLE',
                 default=0.5 * math.pi,
                 )
         cls.longitude_min = FloatProperty(
-                name="Min longitude",
+                name="Min Longitude",
                 description="Minimum longitude (horizontal angle) for the equirectangular lens",
                 min=-math.pi, max=math.pi,
                 subtype='ANGLE',
                 default=-math.pi,
                 )
         cls.longitude_max = FloatProperty(
-                name="Max longitude",
+                name="Max Longitude",
                 description="Maximum longitude (horizontal angle) for the equirectangular lens",
                 min=-math.pi, max=math.pi,
                 subtype='ANGLE',




More information about the Bf-blender-cvs mailing list