Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYimingWu <xp8110@outlook.com>2021-03-23 17:15:44 +0300
committerSebastian Parborg <darkdefende@gmail.com>2021-04-01 13:36:23 +0300
commite1b2cf887fdbf2897c59dd7d20ea1074f962d3ee (patch)
tree853b0f2e5e08957e8a59bf6ecd7f4e1cb0735341 /source/blender/makesrna/intern/rna_gpencil_modifier.c
parentd5cefc1844cfd679b5d1f134386635f6165ae2e3 (diff)
LineArt: Remove resampling settings.
This can be done with an other GP modifier already.
Diffstat (limited to 'source/blender/makesrna/intern/rna_gpencil_modifier.c')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil_modifier.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/blender/makesrna/intern/rna_gpencil_modifier.c b/source/blender/makesrna/intern/rna_gpencil_modifier.c
index 6c6f18ab5a4..3a889da754d 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -2524,15 +2524,6 @@ static void rna_def_modifier_gpencillineart(BlenderRNA *brna)
RNA_def_property_range(prop, 0.0f, 1.0f);
RNA_def_property_update(prop, 0, "rna_GpencilModifier_update");
- prop = RNA_def_property(srna, "resample_length", PROP_FLOAT, PROP_DISTANCE);
- RNA_def_property_ui_text(prop,
- "Resample Length",
- "Resample the strokes so that the stroke points have the specified "
- "length between them. Zero length disables the resampling");
- RNA_def_property_ui_range(prop, 0.0f, 1.0f, 0.01f, 2);
- RNA_def_property_range(prop, 0.0f, 1.0f);
- RNA_def_property_update(prop, 0, "rna_GpencilModifier_update");
-
prop = RNA_def_property(srna, "use_transparency", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "transparency_flags", LRT_GPENCIL_TRANSPARENCY_ENABLE);
RNA_def_property_ui_text(