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-11-25 14:05:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-25 14:05:11 +0300
commitb40307df1630e7bd51a181878bd61693b32dd817 (patch)
tree7c45568b31032a8bd2e7a709de9f77f0b2d21dc0 /source/blender/makesrna/intern/rna_fcurve.c
parent50e3bb7f5f34516718c9d0cd36c0ff1677bf2e55 (diff)
add access to bone add/remove from rna. eg.
bone = arm.edit_bones.new("SomeBone") arm.edit_bones.remove(bone) regify (WIP)
Diffstat (limited to 'source/blender/makesrna/intern/rna_fcurve.c')
-rw-r--r--source/blender/makesrna/intern/rna_fcurve.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c
index 8d6a91191f4..da14d937e6c 100644
--- a/source/blender/makesrna/intern/rna_fcurve.c
+++ b/source/blender/makesrna/intern/rna_fcurve.c
@@ -276,7 +276,7 @@ static void rna_Fmodifier_active_update(bContext *C, PointerRNA *ptr)
}
-static int rna_FM_get_length(PointerRNA *ptr, int length[RNA_MAX_ARRAY_DIMENSION])
+static int rna_FModifierGenerator_coefficients_get_length(PointerRNA *ptr, int length[RNA_MAX_ARRAY_DIMENSION])
{
FModifier *fm= (FModifier*)ptr->data;
FMod_Generator *gen= fm->data;
@@ -289,14 +289,14 @@ static int rna_FM_get_length(PointerRNA *ptr, int length[RNA_MAX_ARRAY_DIMENSION
return length[0];
}
-static void rna_FM_get(PointerRNA *ptr, float *values)
+static void rna_FModifierGenerator_coefficients_get(PointerRNA *ptr, float *values)
{
FModifier *fm= (FModifier*)ptr->data;
FMod_Generator *gen= fm->data;
memcpy(values, gen->coefficients, gen->arraysize * sizeof(float));
}
-static void rna_FM_set(PointerRNA *ptr, const float *values)
+static void rna_FModifierGenerator_coefficients_set(PointerRNA *ptr, const float *values)
{
FModifier *fm= (FModifier*)ptr->data;
FMod_Generator *gen= fm->data;
@@ -342,8 +342,8 @@ static void rna_def_fmodifier_generator(BlenderRNA *brna)
prop= RNA_def_property(srna, "coefficients", PROP_FLOAT, PROP_NONE);
RNA_def_property_array(prop, 32);
RNA_def_property_flag(prop, PROP_DYNAMIC);
- RNA_def_property_dynamic_array_funcs(prop, "rna_FM_get_length");
- RNA_def_property_float_funcs(prop, "rna_FM_get", "rna_FM_set", NULL);
+ RNA_def_property_dynamic_array_funcs(prop, "rna_FModifierGenerator_coefficients_get_length");
+ RNA_def_property_float_funcs(prop, "rna_FModifierGenerator_coefficients_get", "rna_FModifierGenerator_coefficients_set", NULL);
RNA_def_property_ui_text(prop, "Coefficients", "Coefficients for 'x' (starting from lowest power of x^0).");
/* coefficients array */