Vector displacement for the sculpting draw brush #104481

Merged
Jeroen Bakker merged 18 commits from robin.hohni/blender:sculpt-vector-displacement into main 2023-02-14 15:29:40 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 01c579db54 - Show all commits

View File

@ -2896,7 +2896,7 @@ static void rna_def_brush(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_rgb_as_vector_displacement", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag2", BRUSH_RGB_AS_VECTOR_DISPLACEMENT);
RNA_def_property_ui_text(prop, "RGB as vector displacement",
"Handles each pixel as individual vector for displacement instead of an offset in normal direction");
"Handles each pixel as individual vector for displacement. Works only with area plane mapping");
RNA_def_property_update(prop, 0, "rna_Brush_update");
prop = RNA_def_property(srna, "normal_weight", PROP_FLOAT, PROP_FACTOR);