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:
authorCampbell Barton <ideasman42@gmail.com>2007-10-21 21:38:17 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-10-21 21:38:17 +0400
commit8bcfafa3d935bf339bd497efe02f489d61e085bd (patch)
treec6d5dfe432d8f6dfb1c8203d74569fbc33d13c07 /release/scripts
parent373a1b05beeb50e34064b5308cd33bbd7a555360 (diff)
changed default nan_definitions.mk to use python 2.5 for linux (ai64 default was py 2.2 which probably wont even compile anymore)
pose.c - left a print here export obj would ask about file overwriting twice.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/export_obj.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/release/scripts/export_obj.py b/release/scripts/export_obj.py
index ded29af1924..101a1ab1e84 100644
--- a/release/scripts/export_obj.py
+++ b/release/scripts/export_obj.py
@@ -629,14 +629,14 @@ def write_ui(filename):
full_path= ''.join(context_name)
- if BPyMessages.Warning_SaveOver(full_path):
- # EXPORT THE FILE.
- write(full_path, export_objects,\
- EXPORT_TRI, EXPORT_EDGES, EXPORT_NORMALS,\
- EXPORT_NORMALS_HQ, EXPORT_UV, EXPORT_MTL,\
- EXPORT_COPY_IMAGES, EXPORT_APPLY_MODIFIERS,\
- EXPORT_ROTX90, EXPORT_BLEN_OBS,\
- EXPORT_GROUP_BY_OB, EXPORT_GROUP_BY_MAT, EXPORT_MORPH_TARGET)
+ # erm... bit of a problem here, this can overwrite files when exporting frames. not too bad.
+ # EXPORT THE FILE.
+ write(full_path, export_objects,\
+ EXPORT_TRI, EXPORT_EDGES, EXPORT_NORMALS,\
+ EXPORT_NORMALS_HQ, EXPORT_UV, EXPORT_MTL,\
+ EXPORT_COPY_IMAGES, EXPORT_APPLY_MODIFIERS,\
+ EXPORT_ROTX90, EXPORT_BLEN_OBS,\
+ EXPORT_GROUP_BY_OB, EXPORT_GROUP_BY_MAT, EXPORT_MORPH_TARGET)
Blender.Set('curframe', orig_frame)