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-14 23:56:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-14 23:56:19 +0300
commite7b4d36fd6a57fb88fdca861dc251a6a8bdf6355 (patch)
treeb2b3338c312c61da07bc4ff7a6ebaef2ca54b718 /source/blender/makesrna/intern/rna_armature_api.c
parent639dd6d25ec07535c8b856d527ffcc75c9a7b6d2 (diff)
* new metarig type for the durian dragon leg (original rig by Cessen)
* option to roll the delta of the arm rig. * fix to copy metarig type * renamed EditBone.align() --> EditBone.align_roll() * Added EditBone.align_orientation(other) * Added bone.vector: same as (bone.tail - bone.head)
Diffstat (limited to 'source/blender/makesrna/intern/rna_armature_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_armature_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_armature_api.c b/source/blender/makesrna/intern/rna_armature_api.c
index 31bd7275487..22bd7313166 100644
--- a/source/blender/makesrna/intern/rna_armature_api.c
+++ b/source/blender/makesrna/intern/rna_armature_api.c
@@ -40,7 +40,7 @@
#include "ED_armature.h"
-void rna_EditBone_align(EditBone *ebo, float *no)
+void rna_EditBone_align_roll(EditBone *ebo, float *no)
{
if(!is_zero_v3(no)) {
float normal[3];
@@ -57,7 +57,7 @@ void RNA_api_armature_edit_bone(StructRNA *srna)
FunctionRNA *func;
PropertyRNA *parm;
- func= RNA_def_function(srna, "align", "rna_EditBone_align");
+ func= RNA_def_function(srna, "align_roll", "rna_EditBone_align_roll");
RNA_def_function_ui_description(func, "Align the bone to a localspace vector.");
parm= RNA_def_float_vector(func, "vector", 3, NULL, -FLT_MAX, FLT_MAX, "Vector", "", -FLT_MAX, FLT_MAX);
RNA_def_property_flag(parm, PROP_REQUIRED);