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-05-27 15:25:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-05-27 15:25:07 +0400
commite689ca078d255963d11de2448847eb7a65bccc2b (patch)
tree34d6df2dfe56949d8e39acc30b8cb1131ad35dac /source/blender
parent4ebc634168e0349c07c74fdf61defaad05db70f9 (diff)
rename curve 'point' to 'co', the property name used verts, bezier points and keyframes.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_fcurve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c
index 1fe22e8fdd8..10b9a5ecc96 100644
--- a/source/blender/makesrna/intern/rna_fcurve.c
+++ b/source/blender/makesrna/intern/rna_fcurve.c
@@ -1162,7 +1162,7 @@ static void rna_def_fpoint(BlenderRNA *brna)
RNA_def_property_update(prop, NC_ANIMATION|ND_KEYFRAME_SELECT, NULL);
/* Vector value */
- prop= RNA_def_property(srna, "point", PROP_FLOAT, PROP_XYZ);
+ prop= RNA_def_property(srna, "co", PROP_FLOAT, PROP_XYZ);
RNA_def_property_float_sdna(prop, NULL, "vec");
RNA_def_property_array(prop, 2);
RNA_def_property_ui_text(prop, "Point", "Point coordinates");