Add Lattice Magic to Addons #48

Merged
Nick Alberelli merged 36 commits from feature/lattice_magic into main 2023-05-17 20:48:52 +02:00
2 changed files with 36 additions and 27 deletions
Showing only changes of commit f4a1716b35 - Show all commits

36
__init__.py Normal file
View File

@ -0,0 +1,36 @@
# Copyright (C) 2020 Demeter Dzadik
#
# 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 3 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, see <http://www.gnu.org/licenses/>.
bl_info = {
"name": "Camera Lattice",
"author": "Demeter Dzadik",
"version": (1,0),
"blender": (2, 90, 0),
"location": "View3D > Sidebar > Camera Lattice",
"description": "Create a lattice in the camera view to smear geometry.",
"category": "Rigging",
"doc_url": "",
"tracker_url": "",
}
from . import camera_lattice
import importlib
def register():
importlib.reload(camera_lattice)
camera_lattice.register()
def unregister():
camera_lattice.unregister()

View File

@ -1,30 +1,3 @@
# Copyright (C) 2020 Demeter Dzadik
#
# 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 3 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, see <http://www.gnu.org/licenses/>.
bl_info = {
"name": "Camera Lattice",
"author": "Demeter Dzadik",
"version": (1,0),
"blender": (2, 90, 0),
"location": "View3D > Sidebar > Camera Lattice",
"description": "Create a lattice in the camera view to smear geometry.",
"category": "Rigging",
"doc_url": "",
"tracker_url": "",
}
# Inspired by https://animplay.wordpress.com/2015/11/18/smear-frame-script-maya/. # Inspired by https://animplay.wordpress.com/2015/11/18/smear-frame-script-maya/.
# This addon allows the user to specify a camera and a collection, # This addon allows the user to specify a camera and a collection,