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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-08-03 15:03:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-03 15:03:04 +0400
commitd22e5002f0a798174b8744edfa6acef25cce393e (patch)
treec1ae366b7f928f549f426ce6a8ba905a98c85d25 /io_scene_fbx
parent845c077891e723ed9cb662a419b3f2847f2a1644 (diff)
fix for spelling error in var name
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/__init__.py2
-rw-r--r--io_scene_fbx/export_fbx.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 01332a6b..724001e5 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -152,7 +152,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper):
description="Remove double keyframes",
default=True,
)
- anim_optimize_precission = FloatProperty(
+ anim_optimize_precision = FloatProperty(
name="Precision",
description=("Tolerence for comparing double keyframes "
"(higher for greater accuracy)"),
diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index d38ff1b9..e3cc0e37 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -198,7 +198,7 @@ def save_single(operator, scene, filepath="",
mesh_smooth_type='FACE',
use_anim=True,
use_anim_optimize=True,
- anim_optimize_precission=6,
+ anim_optimize_precision=6,
use_anim_action_all=False,
use_metadata=True,
path_mode='AUTO',
@@ -2479,7 +2479,7 @@ Connections: {''')
frame_orig = scene.frame_current
if use_anim_optimize:
- ANIM_OPTIMIZE_PRECISSION_FLOAT = 0.1 ** anim_optimize_precission
+ ANIM_OPTIMIZE_PRECISSION_FLOAT = 0.1 ** anim_optimize_precision
# default action, when no actions are avaioable
tmp_actions = []