Sun Position: fix error in HDRI mode when no env tex is selected
[blender-addons.git] / magic_uv / properties.py
blob1ca32a12caea48f5a648a9bc250687f4159bd6f0
1 # SPDX-License-Identifier: GPL-2.0-or-later
3 __author__ = "Nutti <nutti.metro@gmail.com>"
4 __status__ = "production"
5 __version__ = "6.6"
6 __date__ = "22 Apr 2022"
9 from .utils.property_class_registry import PropertyClassRegistry
12 # Properties used in this add-on.
13 # pylint: disable=W0612
14 class MUV_Properties():
15 pass
18 def init_props(scene):
19 scene.muv_props = MUV_Properties()
20 PropertyClassRegistry.init_props(scene)
23 def clear_props(scene):
24 PropertyClassRegistry.del_props(scene)
25 del scene.muv_props