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:
authorJoshua Leung <aligorith@gmail.com>2009-11-13 04:04:01 +0300
committerJoshua Leung <aligorith@gmail.com>2009-11-13 04:04:01 +0300
commitacd7225deaad3e0dcfaf14dd1328dd292bd592f0 (patch)
tree33aa31a8d29ad996c096a14086b0ae7b970cba42 /source/blender/makesrna/intern/rna_animation.c
parente12f39d116eb87c541ec27f022cc52a35e62da8d (diff)
Driver Editing Tweaks:
* Updating dependencies for drivers now clears the disabled status of the relevant Driver FCurve too * Changing the type of ID-block used for Driver Targets and Keying Set Paths will now clear the pointer to the ID-block if it is of the wrong type.
Diffstat (limited to 'source/blender/makesrna/intern/rna_animation.c')
-rw-r--r--source/blender/makesrna/intern/rna_animation.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_animation.c b/source/blender/makesrna/intern/rna_animation.c
index 23a9c48710e..3e7638b3d51 100644
--- a/source/blender/makesrna/intern/rna_animation.c
+++ b/source/blender/makesrna/intern/rna_animation.c
@@ -78,6 +78,16 @@ static int rna_ksPath_id_editable(PointerRNA *ptr)
return (ksp->idtype)? PROP_EDITABLE : 0;
}
+static void rna_ksPath_id_type_set(PointerRNA *ptr, int value)
+{
+ KS_Path *data= (KS_Path*)(ptr->data);
+
+ /* set the driver type, then clear the id-block if the type is invalid */
+ data->idtype= value;
+ if ((data->id) && (GS(data->id->name) != data->idtype))
+ data->id= NULL;
+}
+
static void rna_ksPath_RnaPath_get(PointerRNA *ptr, char *value)
{
KS_Path *ksp= (KS_Path *)ptr->data;
@@ -179,6 +189,7 @@ static void rna_def_keyingset_path(BlenderRNA *brna)
RNA_def_property_enum_sdna(prop, NULL, "idtype");
RNA_def_property_enum_items(prop, id_type_items);
RNA_def_property_enum_default(prop, ID_OB);
+ RNA_def_property_enum_funcs(prop, NULL, "rna_ksPath_id_type_set", NULL);
RNA_def_property_ui_text(prop, "ID Type", "Type of ID-block that can be used.");
/* Group */