diff --git a/release/scripts/export_mdd.py b/release/scripts/export_mdd.py index 81c45c7ab12..eaf6201a04d 100644 --- a/release/scripts/export_mdd.py +++ b/release/scripts/export_mdd.py @@ -18,6 +18,24 @@ Be sure not to use modifiers that change the number or order of verts in the mes """ #Please send any fixes,updates,bugs to Slow67_at_Gmail.com or cbarton_at_metavr.com #Bill Niewuendorp +# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ***** END GPL LICENCE BLOCK ***** + import Blender from Blender import * diff --git a/release/scripts/import_mdd.py b/release/scripts/import_mdd.py index 7ff269d8d22..8e7b9985d3d 100644 --- a/release/scripts/import_mdd.py +++ b/release/scripts/import_mdd.py @@ -26,6 +26,27 @@ for moving animations from package to package. #Please send any fixes,updates,bugs to Slow67_at_Gmail.com #Bill Niewuendorp +# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ***** END GPL LICENCE BLOCK ***** + + + + try: from struct import unpack except: diff --git a/release/scripts/mesh_unfolder.py b/release/scripts/mesh_unfolder.py index c24063e674e..8ebf1777c2e 100644 --- a/release/scripts/mesh_unfolder.py +++ b/release/scripts/mesh_unfolder.py @@ -47,9 +47,26 @@ of the GNU General Public License as published by the Free Software Foundation; or later, currently at http://www.gnu.org/copyleft/gpl.html The idea came while I was riding a bike. - """ +# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ***** END GPL LICENCE BLOCK ***** + # Face lookup class FacesAndEdges: def __init__(self, mesh): diff --git a/release/scripts/uvcopy.py b/release/scripts/uvcopy.py index 7e83fef890b..1ac63dd52b5 100644 --- a/release/scripts/uvcopy.py +++ b/release/scripts/uvcopy.py @@ -17,6 +17,24 @@ This script copies UV coords from a mesh to another (version of the same mesh). All target meshes must have the same number of faces at the active """ +# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ***** END GPL LICENCE BLOCK ***** + import Blender def face_key(me): diff --git a/release/scripts/vertexpaint_gradient.py b/release/scripts/vertexpaint_gradient.py index 0c529784006..d0b7de329df 100755 --- a/release/scripts/vertexpaint_gradient.py +++ b/release/scripts/vertexpaint_gradient.py @@ -10,6 +10,24 @@ __author__ = ["Campbell Barton"] __url__ = ("blender", "elysiun", "http://members.iinet.net.au/~cpbarton/ideasman/") __version__ = "0.1" +# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ***** END GPL LICENCE BLOCK ***** + import mesh_gradient import Blender diff --git a/release/scripts/weightpaint_gradient.py b/release/scripts/weightpaint_gradient.py index d16800b8977..a2bff999610 100755 --- a/release/scripts/weightpaint_gradient.py +++ b/release/scripts/weightpaint_gradient.py @@ -20,6 +20,24 @@ Note: Holding Shift or clicking outside the mesh on the second click will blend the first colour to nothing. ''' +# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ***** END GPL LICENCE BLOCK ***** + import mesh_gradient import Blender