[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [22043] branches/soc-2009-chingachgook/ release/ui/space_info.py: Added COLLADA import/export items to "File" menu.

Arystanbek Dyussenov arystan.d at gmail.com
Thu Jul 30 10:29:03 CEST 2009


Revision: 22043
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=22043
Author:   kazanbas
Date:     2009-07-30 10:29:03 +0200 (Thu, 30 Jul 2009)

Log Message:
-----------
Added COLLADA import/export items to "File" menu. Thanks Campbell!

Modified Paths:
--------------
    branches/soc-2009-chingachgook/release/ui/space_info.py

Modified: branches/soc-2009-chingachgook/release/ui/space_info.py
===================================================================
--- branches/soc-2009-chingachgook/release/ui/space_info.py	2009-07-30 08:22:51 UTC (rev 22042)
+++ branches/soc-2009-chingachgook/release/ui/space_info.py	2009-07-30 08:29:03 UTC (rev 22043)
@@ -75,6 +75,8 @@
 	def draw(self, context):
 		layout = self.layout
 
+		layout.itemO("WM_OT_collada_import", text="COLLADA")
+
 class INFO_MT_file_export(bpy.types.Menu):
 	__space_type__ = "USER_PREFERENCES"
 	__label__ = "Export"
@@ -83,6 +85,7 @@
 		layout = self.layout
 
 		layout.itemO("export.ply", text="PLY")
+		layout.itemO("WM_OT_collada_export", text="COLLADA")
 
 class INFO_MT_file_external_data(bpy.types.Menu):
 	__space_type__ = "USER_PREFERENCES"





More information about the Bf-blender-cvs mailing list