Add Lattice Magic
to Addons
#48
36
__init__.py
Normal file
36
__init__.py
Normal 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()
|
@ -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/.
|
||||
|
||||
# This addon allows the user to specify a camera and a collection,
|
||||
|
Loading…
Reference in New Issue
Block a user