ID Mask node was limmited at 10000 while OB and Mat IDs reach 32767. Set this limit and it's working fine here in my comps
This commit is contained in:
@@ -1871,7 +1871,7 @@ static void def_cmp_id_mask(StructRNA *srna)
|
||||
|
||||
prop = RNA_def_property(srna, "index", PROP_INT, PROP_NONE);
|
||||
RNA_def_property_int_sdna(prop, NULL, "custom1");
|
||||
RNA_def_property_range(prop, 0, 10000);
|
||||
RNA_def_property_range(prop, 0, 32767);
|
||||
RNA_def_property_ui_text(prop, "Index", "Pass index number to convert to alpha");
|
||||
RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_Node_update");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user