Skip to content
Snippets Groups Projects
Commit 9da77e9a authored by Pullusb's avatar Pullusb
Browse files

greasepencil-addon first push

parent 861eb3e2
No related branches found
No related tags found
No related merge requests found
Showing
with 648 additions and 0 deletions
File added
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program 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 2
# of the License, or (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
bl_info = {
"name": "Grease Pencil Tools",
"description": "Pack of tools for Grease pencil drawing",
"author": "Samuel Bernou, Antonio Vazquez, Daniel Martinez Lara, Matias Mendiola",
"version": (1, 1, 2),
"blender": (2, 91, 0),
"location": "Sidebar > Grease pencil > Grease pencil",
"warning": "",
"doc_url": "https://docs.blender.org/manual/en/dev/addons/object/grease_pencil_tools.html",
"tracker_url": "https://github.com/Pullusb/greasepencil-addon/issues",
"category": "Object",
"support": "OFFICIAL",
}
import bpy
from . import (prefs,
box_deform,
line_reshape,
rotate_canvas,
import_brush_pack,
ui_panels,
)
def register():
prefs.register()
box_deform.register()
line_reshape.register()
rotate_canvas.register()
import_brush_pack.register()
ui_panels.register()
## update tab name with update in pref file (passing addon_prefs)
prefs.update_panel(prefs.get_addon_prefs(), bpy.context)
def unregister():
ui_panels.unregister()
import_brush_pack.unregister()
rotate_canvas.unregister()
box_deform.unregister()
line_reshape.unregister()
prefs.unregister()
if __name__ == "__main__":
register()
\ No newline at end of file
This diff is collapsed.
greasepencil_tools/icos/tex_01.jpg

14.7 KiB

greasepencil_tools/icos/tex_02.jpg

14.1 KiB

greasepencil_tools/icos/tex_03.jpg

16.4 KiB

greasepencil_tools/icos/tex_04.jpg

19.3 KiB

greasepencil_tools/icos/tex_05.jpg

17.3 KiB

greasepencil_tools/icos/tex_06.jpg

13.5 KiB

greasepencil_tools/icos/tex_07.jpg

12.3 KiB

greasepencil_tools/icos/tex_08.jpg

14.4 KiB

greasepencil_tools/icos/tex_09.jpg

15.2 KiB

greasepencil_tools/icos/tex_10.jpg

15.7 KiB

greasepencil_tools/icos/tex_11.jpg

17.6 KiB

greasepencil_tools/icos/tex_12.jpg

16 KiB

greasepencil_tools/icos/tex_13.jpg

16.6 KiB

greasepencil_tools/icos/tex_14.jpg

11.8 KiB

greasepencil_tools/icos/tex_15.jpg

19.2 KiB

greasepencil_tools/icos/tex_16.jpg

13.3 KiB

greasepencil_tools/icos/tex_17.jpg

12.4 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment