From 18478d1e62c39a1adb1f573e340bc14e36c2ed10 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 29 Aug 2007 00:10:23 +0000 Subject: [PATCH] scaling the model by 10 by default didnt work for some people, scaling 1.0 by default for now. --- release/scripts/export_fbx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)