[Bf-blender-cvs] [d473d5be5f5] master: Fix: use correct units for some bone properties

Scott Spadea noreply at git.blender.org
Mon Jan 28 11:02:52 CET 2019


Commit: d473d5be5f59ed2cdd8e7b08feabcf7d9b8a8b5b
Author: Scott Spadea
Date:   Mon Jan 28 11:01:46 2019 +0100
Branches: master
https://developer.blender.org/rBd473d5be5f59ed2cdd8e7b08feabcf7d9b8a8b5b

Fix: use correct units for some bone properties

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

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

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

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

diff --git a/source/blender/makesrna/intern/rna_armature.c b/source/blender/makesrna/intern/rna_armature.c
index e07271f3009..62411b054a0 100644
--- a/source/blender/makesrna/intern/rna_armature.c
+++ b/source/blender/makesrna/intern/rna_armature.c
@@ -782,7 +782,7 @@ static void rna_def_bone_common(StructRNA *srna, int editbone)
 
 	/* Number values */
 	/* envelope deform settings */
-	prop = RNA_def_property(srna, "envelope_distance", PROP_FLOAT, PROP_NONE);
+	prop = RNA_def_property(srna, "envelope_distance", PROP_FLOAT, PROP_DISTANCE);
 	RNA_def_property_float_sdna(prop, NULL, "dist");
 	RNA_def_property_range(prop, 0.0f, 1000.0f);
 	RNA_def_property_ui_text(prop, "Envelope Deform Distance", "Bone deformation distance (for Envelope deform only)");
@@ -794,7 +794,7 @@ static void rna_def_bone_common(StructRNA *srna, int editbone)
 	RNA_def_property_ui_text(prop, "Envelope Deform Weight", "Bone deformation weight (for Envelope deform only)");
 	RNA_def_property_update(prop, 0, "rna_Armature_update_data");
 
-	prop = RNA_def_property(srna, "head_radius", PROP_FLOAT, PROP_UNSIGNED);
+	prop = RNA_def_property(srna, "head_radius", PROP_FLOAT, PROP_DISTANCE);
 	if (editbone) RNA_def_property_update(prop, 0, "rna_Armature_editbone_transform_update");
 	else RNA_def_property_update(prop, 0, "rna_Armature_update_data");
 	RNA_def_property_float_sdna(prop, NULL, "rad_head");
@@ -803,7 +803,7 @@ static void rna_def_bone_common(StructRNA *srna, int editbone)
 	RNA_def_property_ui_range(prop, 0.01, 100, 0.1, 3);
 	RNA_def_property_ui_text(prop, "Envelope Head Radius", "Radius of head of bone (for Envelope deform only)");
 
-	prop = RNA_def_property(srna, "tail_radius", PROP_FLOAT, PROP_UNSIGNED);
+	prop = RNA_def_property(srna, "tail_radius", PROP_FLOAT, PROP_DISTANCE);
 	if (editbone) RNA_def_property_update(prop, 0, "rna_Armature_editbone_transform_update");
 	else RNA_def_property_update(prop, 0, "rna_Armature_update_data");
 	RNA_def_property_float_sdna(prop, NULL, "rad_tail");



More information about the Bf-blender-cvs mailing list