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:
authorAlexander Gavrilov <angavrilov@gmail.com>2019-04-23 13:15:30 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2019-04-23 13:45:04 +0300
commitae054af14f995ef84e6368c25b49a306993b701b (patch)
tree8ac335188dcfb2699bcc088df272acc8795878d0 /source/blender/editors/armature/pose_utils.c
parent624e93bbef8a8a34be822c1a98df131439c32788 (diff)
Cleanup: rename the curveInX etc bbone DNA fields to curve_in_x etc.
Diffstat (limited to 'source/blender/editors/armature/pose_utils.c')
-rw-r--r--source/blender/editors/armature/pose_utils.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/editors/armature/pose_utils.c b/source/blender/editors/armature/pose_utils.c
index 4215c122917..45c51897cbf 100644
--- a/source/blender/editors/armature/pose_utils.c
+++ b/source/blender/editors/armature/pose_utils.c
@@ -115,10 +115,10 @@ static void fcurves_to_pchan_links_get(ListBase *pfLinks,
/* store current bbone values */
pfl->roll1 = pchan->roll1;
pfl->roll2 = pchan->roll2;
- pfl->curveInX = pchan->curveInX;
- pfl->curveInY = pchan->curveInY;
- pfl->curveOutX = pchan->curveOutX;
- pfl->curveOutY = pchan->curveOutY;
+ pfl->curve_in_x = pchan->curve_in_x;
+ pfl->curve_in_y = pchan->curve_in_y;
+ pfl->curve_out_x = pchan->curve_out_x;
+ pfl->curve_out_y = pchan->curve_out_y;
pfl->ease1 = pchan->ease1;
pfl->ease2 = pchan->ease2;
pfl->scale_in_x = pchan->scale_in_x;
@@ -261,10 +261,10 @@ void poseAnim_mapping_reset(ListBase *pfLinks)
/* store current bbone values */
pchan->roll1 = pfl->roll1;
pchan->roll2 = pfl->roll2;
- pchan->curveInX = pfl->curveInX;
- pchan->curveInY = pfl->curveInY;
- pchan->curveOutX = pfl->curveOutX;
- pchan->curveOutY = pfl->curveOutY;
+ pchan->curve_in_x = pfl->curve_in_x;
+ pchan->curve_in_y = pfl->curve_in_y;
+ pchan->curve_out_x = pfl->curve_out_x;
+ pchan->curve_out_y = pfl->curve_out_y;
pchan->ease1 = pfl->ease1;
pchan->ease2 = pfl->ease2;
pchan->scale_in_x = pfl->scale_in_x;