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-19 15:55:38 +0300
committerSebastian Parborg <darkdefende@gmail.com>2021-03-19 20:26:33 +0300
commit3420c3d8c6cc026df093133799f116021aa9ba51 (patch)
tree648396a9ffe77041653507864b962ae5546ba986 /source/blender/makesrna/intern/rna_gpencil_modifier.c
parenta00249dd22ca2331648588b404cee87668f74aa3 (diff)
LineArt: Remove geometry space chaining
It caused some chaining errors when used in combination with image space chaining. After some internal discussion, we realized it is not useful as chaining in image space essentially does the same thing.
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 f6b52f80128..7e6d83cdbdd 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -2388,15 +2388,6 @@ static void rna_def_modifier_gpencillineart(BlenderRNA *brna)
prop, "Remove Doubles", "Remove doubles from the source geometry before generating stokes");
RNA_def_property_update(prop, NC_SCENE, "rna_GpencilModifier_update");
- prop = RNA_def_property(srna, "chaining_geometry_threshold", PROP_FLOAT, PROP_DISTANCE);
- RNA_def_property_ui_text(prop,
- "Geometry Threshold",
- "Segments with a geometric distance between them lower than this "
- "will be chained together");
- RNA_def_property_ui_range(prop, 0.0f, 0.5f, 0.001f, 3);
- RNA_def_property_range(prop, 0.0f, 0.5f);
- RNA_def_property_update(prop, NC_SCENE, "rna_GpencilModifier_update");
-
prop = RNA_def_property(srna, "chaining_image_threshold", PROP_FLOAT, PROP_DISTANCE);
RNA_def_property_ui_text(
prop,