Small change for the new Lat/Long properties.
We use upper case for properties.
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user