From f42a501c619605bca90d4d7fe15bad22d19be7be Mon Sep 17 00:00:00 2001 From: YimingWu Date: Thu, 10 Jun 2021 00:10:24 +0800 Subject: Revert "GPencil: Add custom normal entry to bGPDspoint." This reverts commit f546b0800b9121b24b1292f1ec602ed9964d1848. --- source/blender/makesrna/intern/rna_gpencil.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'source/blender/makesrna/intern/rna_gpencil.c') diff --git a/source/blender/makesrna/intern/rna_gpencil.c b/source/blender/makesrna/intern/rna_gpencil.c index a2d6bbed70c..19ed5f960cf 100644 --- a/source/blender/makesrna/intern/rna_gpencil.c +++ b/source/blender/makesrna/intern/rna_gpencil.c @@ -1288,14 +1288,6 @@ static void rna_def_gpencil_stroke_point(BlenderRNA *brna) RNA_def_property_ui_text( prop, "Vertex Color", "Color used to mix with point color to get final color"); RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update"); - - /* Surface normal. */ - prop = RNA_def_property(srna, "custom_vector", PROP_FLOAT, PROP_COLOR); - RNA_def_property_array(prop, 3); - RNA_def_property_range(prop, 0.0f, 1.0f); - RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); - RNA_def_property_ui_text(prop, "Custom Vector", "Generic custom vector for various use cases"); - RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update"); } static void rna_def_gpencil_stroke_points_api(BlenderRNA *brna, PropertyRNA *cprop) -- cgit v1.2.3