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-08-29 04:10:23 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-08-29 04:10:23 +0400
commit18478d1e62c39a1adb1f573e340bc14e36c2ed10 (patch)
tree2471add5886780ce83231594ac18b4f732c4e705 /release/scripts/export_fbx.py
parent19f15f6ab34e2a23c3c4eec98ce27464f3982534 (diff)
scaling the model by 10 by default didnt work for some people, scaling 1.0 by default for now.
Diffstat (limited to 'release/scripts/export_fbx.py')
-rw-r--r--release/scripts/export_fbx.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/export_fbx.py b/release/scripts/export_fbx.py
index 9ca6842ac74..be334dc7c7c 100644
--- a/release/scripts/export_fbx.py
+++ b/release/scripts/export_fbx.py
@@ -2757,7 +2757,7 @@ def write_ui():
# done setting globals
# Used by the user interface
- GLOBALS['_SCALE'] = Draw.Create(10.0)
+ GLOBALS['_SCALE'] = Draw.Create(1.0)
GLOBALS['_XROT90'] = Draw.Create(True)
GLOBALS['_YROT90'] = Draw.Create(False)
GLOBALS['_ZROT90'] = Draw.Create(False)