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>2009-12-11 01:23:09 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-11 01:23:09 +0300
commit97abf6ad96932ae5d1a3e6b6d89e271f11e9cd8a (patch)
tree7337e06f4d54e8e9a455f4710d60459758efd9ab /release/scripts/modules/rigify_utils.py
parent2a785e8fae8d160f7ce11565705be4d71e2d676b (diff)
* rename 'rna_path' --> 'data_path', rna and dna are for internal use and are not descriptive.
* armature.pose_position: POSE_POSITION, REST_POSITION --> POSE, REST * rigify now forces rest pose mode * updated neck_flex to keep original bones unchanged
Diffstat (limited to 'release/scripts/modules/rigify_utils.py')
-rw-r--r--release/scripts/modules/rigify_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/modules/rigify_utils.py b/release/scripts/modules/rigify_utils.py
index 5061248c35d..a1fc54cb5bb 100644
--- a/release/scripts/modules/rigify_utils.py
+++ b/release/scripts/modules/rigify_utils.py
@@ -141,7 +141,7 @@ def blend_bone_list(obj, apply_bones, from_bones, to_bones, target_bone=None, ta
tar.name = target_bone
tar.id_type = 'OBJECT'
tar.id = obj
- tar.rna_path = driver_path
+ tar.data_path = driver_path
def blend_location(new_pbone, from_bone_name, to_bone_name):
con = new_pbone.constraints.new('COPY_LOCATION')