Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArystanbek Dyussenov <arystan.d@gmail.com>2009-09-22 20:35:07 +0400
committerArystanbek Dyussenov <arystan.d@gmail.com>2009-09-22 20:35:07 +0400
commitabb49829ef6bdc7385e51a00a3e2d5402dc09155 (patch)
treeec2e14a06da5d24fab7863ea249e899f11f3594c /release/ui
parentd86864027d449114868ec531b9ccf6dd19dbe67f (diff)
parent816377cc02fe5dd4be945c0f3d415861114b4980 (diff)
Manual merge of soc-2009-kazanbas branch:
* copied I/O scripts * copied, modified rna_*_api.c and rna_*.c I/O scripts not working yet due to slight BPY differences and RNA changes. Will fix them later. Not merged changes: * C unit testing integration, because it is clumsy * scons cross-compiling, can be merged easily later
Diffstat (limited to 'release/ui')
-rw-r--r--release/ui/space_info.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/release/ui/space_info.py b/release/ui/space_info.py
index 539a6722cf0..7162716e73e 100644
--- a/release/ui/space_info.py
+++ b/release/ui/space_info.py
@@ -84,7 +84,9 @@ class INFO_MT_file_import(bpy.types.Menu):
def draw(self, context):
layout = self.layout
- layout.itemL(text="Nothing yet")
+ layout.itemO("import.3ds", text="3DS")
+ layout.itemO("import.obj", text="OBJ")
+
class INFO_MT_file_export(bpy.types.Menu):
__space_type__ = 'INFO'
@@ -93,7 +95,12 @@ class INFO_MT_file_export(bpy.types.Menu):
def draw(self, context):
layout = self.layout
+ layout.itemO("export.3ds", text="3DS")
+ layout.itemO("export.fbx", text="FBX")
+ layout.itemO("export.obj", text="OBJ")
layout.itemO("export.ply", text="PLY")
+ layout.itemO("export.x3d", text="X3D")
+
class INFO_MT_file_external_data(bpy.types.Menu):
__space_type__ = 'INFO'