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_camera_rigs/prefs.py')
-rw-r--r--add_camera_rigs/prefs.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/add_camera_rigs/prefs.py b/add_camera_rigs/prefs.py
new file mode 100644
index 00000000..18c75bc4
--- /dev/null
+++ b/add_camera_rigs/prefs.py
@@ -0,0 +1,46 @@
+import bpy
+from bpy.types import AddonPreferences
+from bpy.props import StringProperty
+
+
+class Add_Camera_Rigs_Preferences(AddonPreferences):
+ bl_idname = 'add_camera_rigs'
+
+ # widget prefix
+ widget_prefix: StringProperty(
+ name="Camera Widget prefix",
+ description="Choose a prefix for the widget objects",
+ default="WDGT_",
+ )
+
+ # collection name
+ camera_widget_collection_name: StringProperty(
+ name="Bone Widget collection name",
+ description="Choose a name for the collection the widgets will appear",
+ default="WDGTS_camera",
+ )
+
+ def draw(self, context):
+ layout = self.layout
+
+ row = layout.row()
+ col = row.column()
+ col.prop(self, "widget_prefix", text="Widget Prefix")
+ col.prop(self, "camera_widget_collection_name", text="Collection name")
+
+
+classes = (
+ Add_Camera_Rigs_Preferences,
+)
+
+
+def register():
+ from bpy.utils import register_class
+ for cls in classes:
+ register_class(cls)
+
+
+def unregister():
+ from bpy.utils import unregister_class
+ for cls in classes:
+ unregister_class(cls)