Bugfix: Autokeying was non-functional after the Keying Sets refactor
- The RNA wrapping for the generate callback was still wrong, with the primary effect being that C-code calling this had unexpected consequences that were hard to debug. - Fixed some defective checks that meant that when specifying the RNA-pointers for the Keying Set to use (rather than using the Keying Set's own iterator callback) would never add any info.
This commit is contained in:
@@ -131,7 +131,7 @@ static void RKS_GEN_rna_internal(KeyingSetInfo *ksi, bContext *C, KeyingSet *ks,
|
||||
RNA_parameter_set_lookup(&list, "ksi", &ksi);
|
||||
RNA_parameter_set_lookup(&list, "context", &C);
|
||||
RNA_parameter_set_lookup(&list, "ks", &ks);
|
||||
RNA_parameter_set_lookup(&list, "data", &data);
|
||||
RNA_parameter_set_lookup(&list, "data", data);
|
||||
|
||||
/* execute the function */
|
||||
ksi->ext.call(&ptr, func, &list);
|
||||
@@ -404,7 +404,7 @@ static void rna_def_keyingset_info(BlenderRNA *brna)
|
||||
RNA_def_property_flag(parm, PROP_REQUIRED);
|
||||
parm= RNA_def_pointer(func, "ks", "KeyingSet", "", "");
|
||||
RNA_def_property_flag(parm, PROP_REQUIRED);
|
||||
parm= RNA_def_pointer(func, "data", NULL, "", ""); // "AnyType"...
|
||||
parm= RNA_def_pointer(func, "data", "AnyType", "", "");
|
||||
RNA_def_property_flag(parm, PROP_REQUIRED|PROP_RNAPTR|PROP_NEVER_NULL);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user