Vector blur compo node: raising hard limit for Blur factor to 20 (soft, UI limit remains at 2), usefull in some "special effects" case, though results can become strange in some cases...
This commit is contained in:
@@ -1671,7 +1671,8 @@ static void def_cmp_vector_blur(StructRNA *srna)
|
||||
|
||||
prop = RNA_def_property(srna, "factor", PROP_FLOAT, PROP_NONE);
|
||||
RNA_def_property_float_sdna(prop, NULL, "fac");
|
||||
RNA_def_property_range(prop, 0.0f, 2.0f);
|
||||
RNA_def_property_range(prop, 0.0, 20.0);
|
||||
RNA_def_property_ui_range(prop, 0.0, 2.0, 1.0, 2);
|
||||
RNA_def_property_ui_text(prop, "Blur Factor",
|
||||
"Scaling factor for motion vectors (actually, 'shutter speed', in frames)");
|
||||
RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_Node_update");
|
||||
|
||||
Reference in New Issue
Block a user