Fix T99259: Python API: ViewLayer.aovs.remove isn't available

Imeplemented **ViewLayer.aovs.remove** by Adding a new rna function to call the internal **BKE_view_layer_remove_aov**, removed assert from **BKE_view_layer_remove_aov**.

Reviewed By: jbakker

Maniphest Tasks: T99259

Differential Revision: https://developer.blender.org/D15341
This commit is contained in:
Mangal Kushwah 2022-08-22 08:36:04 +02:00 committed by Jeroen Bakker
parent 9581be930b
commit ae7909010f
Notes: blender-bot 2023-02-14 02:22:07 +01:00
Referenced by commit 0aeae0d0b9, Revert "Fix T99259: Python API: ViewLayer.aovs.remove isn't available"
Referenced by issue #99259, Python API: ViewLayer.aovs.remove isn't available
2 changed files with 12 additions and 1 deletions

View File

@ -2432,8 +2432,12 @@ struct ViewLayerAOV *BKE_view_layer_add_aov(struct ViewLayer *view_layer)
void BKE_view_layer_remove_aov(ViewLayer *view_layer, ViewLayerAOV *aov)
{
BLI_assert(BLI_findindex(&view_layer->aovs, aov) != -1);
if (BLI_findindex(&view_layer->aovs, aov) == -1) {
return;
}
BLI_assert(aov != NULL);
if (view_layer->active_aov == aov) {
if (aov->next) {
viewlayer_aov_active_set(view_layer, aov->next);

View File

@ -4256,6 +4256,13 @@ static void rna_def_view_layer_aovs(BlenderRNA *brna, PropertyRNA *cprop)
func = RNA_def_function(srna, "add", "BKE_view_layer_add_aov");
parm = RNA_def_pointer(func, "aov", "AOV", "", "Newly created AOV");
RNA_def_function_return(func, parm);
func = RNA_def_function(srna, "remove", "BKE_view_layer_remove_aov");
RNA_def_function_ui_description(func, "Remove a AOV");
RNA_def_function_flag(func, FUNC_USE_MAIN | FUNC_USE_REPORTS | FUNC_USE_SELF_ID);
parm = RNA_def_pointer(func, "aov", "AOV", "", "AOVs to remove");
RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_REQUIRED | PARM_RNAPTR);
RNA_def_parameter_clear_flags(parm, PROP_THICK_WRAP, 0);
}
static void rna_def_view_layer_aov(BlenderRNA *brna)