[Bf-blender-cvs] [f17afe69a3b] master: Fix: Use correct units in Shrinkwrap modifier

Łukasz Kwoska noreply at git.blender.org
Sun Jan 27 12:25:48 CET 2019


Commit: f17afe69a3b103cf9e8fb3c3f9c349ee8c1d7f3b
Author: Łukasz Kwoska
Date:   Sun Jan 27 12:22:14 2019 +0100
Branches: master
https://developer.blender.org/rBf17afe69a3b103cf9e8fb3c3f9c349ee8c1d7f3b

Fix: Use correct units in Shrinkwrap modifier

Differential Revision: https://developer.blender.org/D4261

===================================================================

M	source/blender/makesrna/intern/rna_modifier.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 2414921eeba..8afa62262a1 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -3261,14 +3261,14 @@ static void rna_def_modifier_shrinkwrap(BlenderRNA *brna)
 	RNA_def_property_string_funcs(prop, NULL, NULL, "rna_ShrinkwrapModifier_vgroup_name_set");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
-	prop = RNA_def_property(srna, "offset", PROP_FLOAT, PROP_NONE);
+	prop = RNA_def_property(srna, "offset", PROP_FLOAT, PROP_UNIT_LENGTH);
 	RNA_def_property_float_sdna(prop, NULL, "keepDist");
 	RNA_def_property_range(prop, -FLT_MAX, FLT_MAX);
 	RNA_def_property_ui_range(prop, -100, 100, 1, 2);
 	RNA_def_property_ui_text(prop, "Offset", "Distance to keep from the target");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
-	prop = RNA_def_property(srna, "project_limit", PROP_FLOAT, PROP_NONE);
+	prop = RNA_def_property(srna, "project_limit", PROP_FLOAT, PROP_UNIT_LENGTH);
 	RNA_def_property_float_sdna(prop, NULL, "projLimit");
 	RNA_def_property_range(prop, 0.0, FLT_MAX);
 	RNA_def_property_ui_range(prop, 0, 100, 1, 2);



More information about the Bf-blender-cvs mailing list