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>2010-09-18 08:24:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-18 08:24:04 +0400
commitc853c23267853e3585bc4d1ef8fa57a7856bec25 (patch)
tree5423d7152cf13dec4e89120e3e245dc47ee371a7 /source/blender/makesrna/intern/rna_pose_api.c
parentb6554136899ef4c86436c42cf0a6d48db090dc93 (diff)
missed renaming this function call.
Diffstat (limited to 'source/blender/makesrna/intern/rna_pose_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_pose_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_pose_api.c b/source/blender/makesrna/intern/rna_pose_api.c
index 48e8a1e6940..4560fa426f1 100644
--- a/source/blender/makesrna/intern/rna_pose_api.c
+++ b/source/blender/makesrna/intern/rna_pose_api.c
@@ -64,7 +64,7 @@ void RNA_api_pose_channel(StructRNA *srna)
PropertyRNA *parm;
FunctionRNA *func;
- func= RNA_def_function(srna, "envelope", "rna_PoseBone_do_envelope");
+ func= RNA_def_function(srna, "evaluate_envelope", "rna_PoseBone_do_envelope");
RNA_def_function_ui_description(func, "Calculate bone envelope at given point.");
parm= RNA_def_float_vector_xyz(func, "point", 3, NULL, -FLT_MAX, FLT_MAX, "Point", "Position in 3d space to evaluate", -FLT_MAX, FLT_MAX);
RNA_def_property_flag(parm, PROP_REQUIRED);