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-26 09:33:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-26 09:33:04 +0400
commit4330632ef09237e360af91fbbcc1cbc5aa3a3be8 (patch)
tree59b5b266d6687e1d75101753990e1daa21c1f045 /mocap/__init__.py
parent2bb8bb9ba02410f84ada26edb7929b1646e22284 (diff)
Superficial pep8 edits
Diffstat (limited to 'mocap/__init__.py')
-rw-r--r--mocap/__init__.py16
1 files changed, 6 insertions, 10 deletions
diff --git a/mocap/__init__.py b/mocap/__init__.py
index 7a8547a9..e1829a98 100644
--- a/mocap/__init__.py
+++ b/mocap/__init__.py
@@ -26,7 +26,7 @@ bl_info = {
"location": "Object UI -> Mocap tools",
"description": "Various tools for working with motion capture animation",
"warning": "",
- "wiki_url": ("http://wiki.blender.org/index.php/User:Benjycook/GSOC/Manual"),
+ "wiki_url": "http://wiki.blender.org/index.php/User:Benjycook/GSOC/Manual",
"tracker_url": "",
"support": 'OFFICIAL',
"category": "Animation"}
@@ -121,7 +121,6 @@ class MocapConstraint(bpy.types.PropertyGroup):
real_constraint_bone = bpy.props.StringProperty()
-
# Animation Stitch Settings, used for animation stitching of 2 retargeted animations.
class AnimationStitchSettings(bpy.types.PropertyGroup):
first_action = bpy.props.StringProperty(name="Action 1",
@@ -141,7 +140,6 @@ class AnimationStitchSettings(bpy.types.PropertyGroup):
default="")
-
# MocapNLA Tracks. Stores which tracks/actions are associated with each retargeted animation.
class MocapNLATracks(bpy.types.PropertyGroup):
name = bpy.props.StringProperty()
@@ -151,8 +149,6 @@ class MocapNLATracks(bpy.types.PropertyGroup):
stride_action = bpy.props.StringProperty()
-
-
#Update function for Advanced Retarget boolean variable.
def advancedRetargetToggle(self, context):
enduser_obj = context.active_object
@@ -168,7 +164,6 @@ def advancedRetargetToggle(self, context):
retarget.cleanTempConstraints(enduser_obj)
-
def toggleIKBone(self, context):
#Update function for IK functionality. Is called when IK prop checkboxes are toggled.
if self.IKRetarget:
@@ -220,7 +215,6 @@ class MocapMapping(bpy.types.PropertyGroup):
name = bpy.props.StringProperty()
-
def updateIKRetarget():
# ensures that Blender constraints and IK properties are in sync
# currently runs when module is loaded, should run when scene is loaded
@@ -237,6 +231,7 @@ def updateIKRetarget():
updateIKRetarget()
+
def hasIKConstraint(pose_bone):
#utility function / predicate, returns True if given bone has IK constraint
ik = [constraint for constraint in pose_bone.constraints if constraint.type == "IK"]
@@ -245,6 +240,7 @@ def hasIKConstraint(pose_bone):
else:
return False
+
class MocapPanel(bpy.types.Panel):
# Motion capture retargeting panel
bl_label = "Mocap tools"
@@ -281,7 +277,7 @@ class MocapPanel(bpy.types.Panel):
perf_pose_bones = enduser_obj.pose.bones
MappingRow = self.layout.row(align=True)
footCol = MappingRow.column(align=True)
- nameCol =MappingRow.column(align=True)
+ nameCol = MappingRow.column(align=True)
nameCol.scale_x = 2
mapCol = MappingRow.column(align=True)
mapCol.scale_x = 2
@@ -877,8 +873,8 @@ def register():
description="Amount of frames to skip - for previewing retargets quickly. 1 is fully sampled",
min=1)
bpy.utils.register_module(__name__)
-
-
+
+
def unregister():
bpy.utils.unregister_module(__name__)