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 'magic_uv/properties.py')
-rw-r--r--magic_uv/properties.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/magic_uv/properties.py b/magic_uv/properties.py
new file mode 100644
index 00000000..21506915
--- /dev/null
+++ b/magic_uv/properties.py
@@ -0,0 +1,27 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+# <pep8-80 compliant>
+
+__author__ = "Nutti <nutti.metro@gmail.com>"
+__status__ = "production"
+__version__ = "6.5"
+__date__ = "6 Mar 2021"
+
+
+from .utils.property_class_registry import PropertyClassRegistry
+
+
+# Properties used in this add-on.
+# pylint: disable=W0612
+class MUV_Properties():
+ pass
+
+
+def init_props(scene):
+ scene.muv_props = MUV_Properties()
+ PropertyClassRegistry.init_props(scene)
+
+
+def clear_props(scene):
+ PropertyClassRegistry.del_props(scene)
+ del scene.muv_props