From 3420c3d8c6cc026df093133799f116021aa9ba51 Mon Sep 17 00:00:00 2001 From: YimingWu Date: Fri, 19 Mar 2021 20:55:38 +0800 Subject: 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. --- source/blender/makesrna/intern/rna_gpencil_modifier.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'source/blender/makesrna/intern/rna_gpencil_modifier.c') 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, -- cgit v1.2.3