[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [1856] trunk/py/scripts/addons: description for demo mode.

Campbell Barton ideasman42 at gmail.com
Thu Apr 21 09:06:48 CEST 2011


Revision: 1856
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=1856
Author:   campbellbarton
Date:     2011-04-21 07:06:48 +0000 (Thu, 21 Apr 2011)
Log Message:
-----------
description for demo mode.

Modified Paths:
--------------
    trunk/py/scripts/addons/io_scene_fbx/export_fbx.py
    trunk/py/scripts/addons/space_view3d_math_vis/__init__.py
    trunk/py/scripts/addons/system_demo_mode/__init__.py

Modified: trunk/py/scripts/addons/io_scene_fbx/export_fbx.py
===================================================================
--- trunk/py/scripts/addons/io_scene_fbx/export_fbx.py	2011-04-20 14:58:18 UTC (rev 1855)
+++ trunk/py/scripts/addons/io_scene_fbx/export_fbx.py	2011-04-21 07:06:48 UTC (rev 1856)
@@ -2207,7 +2207,7 @@
                 if me in iter(my_bone.blenMeshes.values()):
                     write_sub_deformer_skin(my_mesh, my_bone, weights)
 
-    # Write pose's really weired, only needed when an armature and mesh are used together
+    # Write pose's really weird, only needed when an armature and mesh are used together
     # each by themselves dont need pose data. for now only pose meshes and bones
 
     file.write('''

Modified: trunk/py/scripts/addons/space_view3d_math_vis/__init__.py
===================================================================
--- trunk/py/scripts/addons/space_view3d_math_vis/__init__.py	2011-04-20 14:58:18 UTC (rev 1855)
+++ trunk/py/scripts/addons/space_view3d_math_vis/__init__.py	2011-04-21 07:06:48 UTC (rev 1856)
@@ -1,4 +1,4 @@
-#====================== BEGIN GPL LICENSE BLOCK ======================
+# ##### 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
@@ -14,8 +14,10 @@
 #  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 ========================
+# ##### END GPL LICENSE BLOCK #####
 
+# <pep8 compliant>
+
 bl_info = {
     "name": "Math Vis (Console)",
     "author": "Campbell Barton",
@@ -50,7 +52,7 @@
         layout = self.layout
         view = context.space_data
 
-        col = layout.column(align=True) 
+        col = layout.column(align=True)
 
         callbacks = draw.callbacks
         ok = False
@@ -62,7 +64,6 @@
         col.operator("view3d.math_vis_toggle", emboss=False, icon='CHECKBOX_HLT' if ok else 'CHECKBOX_DEHLT')
 
 
-
 class SetupMathView(bpy.types.Operator):
     '''Draw a line with the mouse'''
     bl_idname = "view3d.math_vis_toggle"
@@ -97,6 +98,7 @@
     import console_python
     console_python.execute.hooks.append((console_hook, ()))
 
+
 def unregister():
     bpy.utils.unregister_module(__name__)
 

Modified: trunk/py/scripts/addons/system_demo_mode/__init__.py
===================================================================
--- trunk/py/scripts/addons/system_demo_mode/__init__.py	2011-04-20 14:58:18 UTC (rev 1855)
+++ trunk/py/scripts/addons/system_demo_mode/__init__.py	2011-04-21 07:06:48 UTC (rev 1856)
@@ -24,7 +24,7 @@
     "blender": (2, 5, 7),
     "api": 35622,
     "location": "Demo Menu",
-    "description": "TODO",
+    "description": "Demo mode lets you select multiple blend files and loop over them.",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"\
         "Scripts/System/Demo_Mode#Running_Demo_Mode",



More information about the Bf-extensions-cvs mailing list