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:
authorBrecht Van Lommel <brecht@blender.org>2022-03-15 20:29:24 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-03-15 20:31:13 +0300
commit2502531bb4ab4a76a876c003dab34951da31e1eb (patch)
treea53d6d59a03dc88cb9207d97ddd49c90f2bfc391 /magic_uv/properties.py
parent777653f7d6322a3a651c5ca95ba9f458165b9b48 (diff)
Cleanup: fix source typos
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D14313
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