-
Notifications
You must be signed in to change notification settings - Fork 1
/
__init__.py
61 lines (54 loc) · 1.86 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# ##### BEGIN GPL LICENSE BLOCK #####
#
# GPLv3 License
#
# ColorRampConverter
# Copyright (C) 2022-2024, Mark Elek, David Elek
#
# ColorRampConverter is a Blender addon that generates
# custom node groups from color ramp nodes,
# making a few parameters more accessible.
#
# This file is a part of ColorRampConverter.
# ColorRampConverter is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# ColorRampConverter is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ColorRampConverter. If not, see <http://www.gnu.org/licenses/>.
#
# ##### END GPL LICENSE BLOCK #####
# <pep8 compliant>
from .src import operators
from .src import panels
from .src import preferences
from .src import properties
bl_info = {
"name": "ColorRampConverter",
"author": "Mark Elek, David Elek",
"description": "Convert Color Ramp node to Map Range nodes and back",
"blender": (4, 0, 0),
"version": (1, 3, 0),
"location": "Shader Editor -> 'N' Sidebar -> 'Convert Color Ramp' Panel",
"warning": "",
"doc_url": "https://colorrampconverter.readthedocs.io/en/latest/",
"tracker_url": "https://github.com/markelekdotcom/color-ramp-converter/issues",
"support": "COMMUNITY",
"category": "Node"
}
def register():
operators.register()
panels.register()
preferences.register()
properties.register()
def unregister():
operators.unregister()
panels.unregister()
preferences.unregister()
properties.unregister()