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:
authorDaniel M. Basso <danielmbasso@gmail.com>2013-01-26 04:44:35 +0400
committerDaniel M. Basso <danielmbasso@gmail.com>2013-01-26 04:44:35 +0400
commit9707a87e34661d10a3c9126ddd026b8641d15d45 (patch)
treeedebc2f13678d639d33d84b735ddfe00d732d01c /io_anim_acclaim
parent4f7b06a341d8a8c2b814eef0e9c07aa388f046a5 (diff)
fix for transform.rotate parameter convention change
Diffstat (limited to 'io_anim_acclaim')
-rw-r--r--io_anim_acclaim/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/io_anim_acclaim/__init__.py b/io_anim_acclaim/__init__.py
index 4b5b423f..e47f50fe 100644
--- a/io_anim_acclaim/__init__.py
+++ b/io_anim_acclaim/__init__.py
@@ -25,8 +25,8 @@
bl_info = {
"name": "Acclaim Motion Capture Files (.asf, .amc)",
"author": "Daniel Monteiro Basso <daniel@basso.inf.br>",
- "version": (2012, 2, 29, 1),
- "blender": (2, 62, 0),
+ "version": (2013, 1, 26, 1),
+ "blender": (2, 65, 9),
"location": "File > Import-Export",
"description": "Imports Acclaim Skeleton and Motion Capture Files",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
@@ -360,9 +360,9 @@ class AsfImporter(bpy.types.Operator):
sb.create_armature()
sb.build_structure(self.use_limits)
if self.use_rot_x:
- bpy.ops.transform.rotate(value=(radians(90.0),), axis=(1, 0, 0))
+ bpy.ops.transform.rotate(value=radians(90.0), axis=(1, 0, 0))
if self.use_rot_z:
- bpy.ops.transform.rotate(value=(radians(90.0),), axis=(0, 0, 1))
+ bpy.ops.transform.rotate(value=radians(90.0), axis=(0, 0, 1))
return {'FINISHED'}
def invoke(self, context, event):