[Bf-blender-cvs] [61bb01b57b] app-templates: Add sample templates

Campbell Barton noreply at git.blender.org
Wed Mar 15 18:56:42 CET 2017


Commit: 61bb01b57b188027381243df1fa5292ca5079c9f
Author: Campbell Barton
Date:   Thu Mar 16 01:48:25 2017 +1100
Branches: app-templates
https://developer.blender.org/rB61bb01b57b188027381243df1fa5292ca5079c9f

Add sample templates

===================================================================

A	release/app_templates/101/startup.blend
A	release/app_templates/101/template/__init__.py
A	release/app_templates/3d_print/startup.blend
A	release/app_templates/3d_print/template/__init__.py
A	release/app_templates/lighting/startup.blend
A	release/app_templates/lighting/template/__init__.py

===================================================================

diff --git a/release/app_templates/101/startup.blend b/release/app_templates/101/startup.blend
new file mode 100644
index 0000000000..c7e0b681e0
Binary files /dev/null and b/release/app_templates/101/startup.blend differ
diff --git a/release/app_templates/101/template/__init__.py b/release/app_templates/101/template/__init__.py
new file mode 100644
index 0000000000..44e622c10e
--- /dev/null
+++ b/release/app_templates/101/template/__init__.py
@@ -0,0 +1,26 @@
+# ##### 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 #####
+
+# <pep8-80 compliant>
+
+def register():
+    print("Template Register", __file__)
+
+
+def unregister():
+    print("Template Unregister", __file__)
diff --git a/release/app_templates/3d_print/startup.blend b/release/app_templates/3d_print/startup.blend
new file mode 100644
index 0000000000..ec93c22b34
Binary files /dev/null and b/release/app_templates/3d_print/startup.blend differ
diff --git a/release/app_templates/3d_print/template/__init__.py b/release/app_templates/3d_print/template/__init__.py
new file mode 100644
index 0000000000..44e622c10e
--- /dev/null
+++ b/release/app_templates/3d_print/template/__init__.py
@@ -0,0 +1,26 @@
+# ##### 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 #####
+
+# <pep8-80 compliant>
+
+def register():
+    print("Template Register", __file__)
+
+
+def unregister():
+    print("Template Unregister", __file__)
diff --git a/release/app_templates/lighting/startup.blend b/release/app_templates/lighting/startup.blend
new file mode 100644
index 0000000000..73653ba9f9
Binary files /dev/null and b/release/app_templates/lighting/startup.blend differ
diff --git a/release/app_templates/lighting/template/__init__.py b/release/app_templates/lighting/template/__init__.py
new file mode 100644
index 0000000000..44e622c10e
--- /dev/null
+++ b/release/app_templates/lighting/template/__init__.py
@@ -0,0 +1,26 @@
+# ##### 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 #####
+
+# <pep8-80 compliant>
+
+def register():
+    print("Template Register", __file__)
+
+
+def unregister():
+    print("Template Unregister", __file__)




More information about the Bf-blender-cvs mailing list