Node Wrangler: do not add reroutes to unavailable outputs
[blender-addons.git] / magic_uv / properties.py
blobaa5416f9a7c330b83937a8113a93cea021d446ae
1 # SPDX-FileCopyrightText: 2018-2022 Blender Foundation
3 # SPDX-License-Identifier: GPL-2.0-or-later
5 __author__ = "Nutti <nutti.metro@gmail.com>"
6 __status__ = "production"
7 __version__ = "6.6"
8 __date__ = "22 Apr 2022"
11 from .utils.property_class_registry import PropertyClassRegistry
14 # Properties used in this add-on.
15 # pylint: disable=W0612
16 class MUV_Properties():
17 pass
20 def init_props(scene):
21 scene.muv_props = MUV_Properties()
22 PropertyClassRegistry.init_props(scene)
25 def clear_props(scene):
26 PropertyClassRegistry.del_props(scene)
27 del scene.muv_props