Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'add_advanced_objects_menu/add_light_template.py')
-rw-r--r--add_advanced_objects_menu/add_light_template.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/add_advanced_objects_menu/add_light_template.py b/add_advanced_objects_menu/add_light_template.py
index 5b4fbc86..2ca87c3b 100644
--- a/add_advanced_objects_menu/add_light_template.py
+++ b/add_advanced_objects_menu/add_light_template.py
@@ -73,22 +73,22 @@ class OBJECT_OT_add_light_template(Operator):
camera = None
target = None
- bKeyLight = BoolProperty(
+ bKeyLight: BoolProperty(
name="Key Light",
description="Enable Key Light in the Scene",
default=True
)
- bFillLight = BoolProperty(
+ bFillLight: BoolProperty(
name="Fill Light",
description="Enable Fill Light in the Scene",
default=True
)
- bBackLight = BoolProperty(
+ bBackLight: BoolProperty(
name="Back Light",
description="Enable Back Light in the Scene",
default=True
)
- camera_constraint = BoolProperty(
+ camera_constraint: BoolProperty(
name="Camera Constraint",
description="Add a Constraint to the Camera Object",
default=False