Added COLLADA import/export items to "File" menu. Thanks Campbell!

This commit is contained in:
Arystanbek Dyussenov
2009-07-30 08:29:03 +00:00
parent 7725687455
commit 0d8816cc6f

View File

@@ -75,6 +75,8 @@ class INFO_MT_file_import(bpy.types.Menu):
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 @@ class INFO_MT_file_export(bpy.types.Menu):
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"