[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33972] trunk/blender: update UI introspect function & man page

Campbell Barton ideasman42 at gmail.com
Fri Dec 31 16:09:06 CET 2010


Revision: 33972
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33972
Author:   campbellbarton
Date:     2010-12-31 16:09:05 +0100 (Fri, 31 Dec 2010)

Log Message:
-----------
update UI introspect function & man page

Modified Paths:
--------------
    trunk/blender/doc/manpage/blender.1
    trunk/blender/intern/tools/bpy_introspect_ui.py

Modified: trunk/blender/doc/manpage/blender.1
===================================================================
(Binary files differ)

Modified: trunk/blender/intern/tools/bpy_introspect_ui.py
===================================================================
--- trunk/blender/intern/tools/bpy_introspect_ui.py	2010-12-31 12:37:30 UTC (rev 33971)
+++ trunk/blender/intern/tools/bpy_introspect_ui.py	2010-12-31 15:09:05 UTC (rev 33972)
@@ -197,8 +197,20 @@
     bpy.types.IDPropertyGroup = IDPropertyGroup
     bpy.types.Operator = Operator
     
+    bpy.types.Armature = type("Armature", (), {})
+    bpy.types.Bone = type("Bone", (), {})
+    bpy.types.EditBone = type("EditBone", (), {})
+    bpy.types.PoseBone = type("PoseBone", (), {})
     bpy.types.Material = type("Material", (), {})
     bpy.types.Lamp = type("Lamp", (), {})
+    bpy.types.Camera = type("Camera", (), {})
+    bpy.types.Curve = type("Curve", (), {})
+    bpy.types.Lattice = type("Lattice", (), {})
+    bpy.types.Mesh = type("Mesh", (), {})
+    bpy.types.MetaBall = type("MetaBall", (), {})
+    bpy.types.Object = type("Object", (), {})
+    bpy.types.Texture = type("Texture", (), {})
+    bpy.types.ParticleSettings = type("ParticleSettings", (), {})
     bpy.types.World = type("World", (), {})
     bpy.types.Brush = type("Brush", (), {})
     bpy.types.WindowManager = type("WindowManager", (), {})





More information about the Bf-blender-cvs mailing list