3 # ##### BEGIN GPL LICENSE BLOCK #####
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software Foundation,
17 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 # ##### END GPL LICENSE BLOCK #####
21 __author__
= "Nutti <nutti.metro@gmail.com>"
22 __status__
= "production"
24 __date__
= "24 Feb 2018"
29 "author": "Nutti, Mifth, Jace Priester, kgeogeo, mem, imdjs"
30 "Keith (Wahooney) Boshoff, McBuff, MaxRobinot, Alexander Milovsky",
32 "blender": (2, 79, 0),
33 "location": "See Add-ons Preferences",
34 "description": "UV Toolset. See Add-ons Preferences for details",
36 "support": "COMMUNITY",
37 "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
38 "Py/Scripts/UV/Magic_UV",
39 "tracker_url": "https://github.com/nutti/Magic-UV",
47 importlib
.reload(common
)
48 importlib
.reload(preferences
)
49 importlib
.reload(properites
)
54 from . import preferences
55 from . import properites
61 bpy
.utils
.register_module(__name__
)
62 properites
.init_props(bpy
.types
.Scene
)
66 bpy
.utils
.unregister_module(__name__
)
67 properites
.clear_props(bpy
.types
.Scene
)
70 if __name__
== "__main__":