Commit: 36208bf4713a9c2e572b2f14f14be290a5f80401
Author: Bastien Montagne
Date:   Thu Aug 28 13:06:33 2014 +0200
Branches: temp_custom_loop_normals
https://developer.blender.org/rB36208bf4713a9c2e572b2f14f14be290a5f80401

UI names/messages tweaks.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_mesh.c 
b/source/blender/makesrna/intern/rna_mesh.c
index bab1d8f..25853ea 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -3202,9 +3202,9 @@ static void rna_def_mesh(BlenderRNA *brna)
 
        prop = RNA_def_property(srna, "use_auto_smooth", PROP_BOOLEAN, 
PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "flag", ME_AUTOSMOOTH);
-       RNA_def_property_ui_text(prop, "Auto Smooth",
-                                "Treat all set-smoothed faces with angles less 
than the specified angle "
-                                "as 'smooth', unless they are linked by a 
sharp edge");
+       RNA_def_property_ui_text(prop, "Split Normals",
+                                "Use split normals - auto smooth (based on 
smooth/sharp faces/edges and angle between "
+                                "faces), and/or use custom split normals data 
if available");
        RNA_def_property_update(prop, 0, "rna_Mesh_update_data");
 
        prop = RNA_def_property(srna, "auto_smooth_angle", PROP_FLOAT, 
PROP_ANGLE);
@@ -3213,7 +3213,8 @@ static void rna_def_mesh(BlenderRNA *brna)
        RNA_def_property_range(prop, 0.0f, DEG2RADF(180.0f));
        RNA_def_property_ui_range(prop, DEG2RADF(0.0f), DEG2RADF(180.0f), 1.0, 
1);
        RNA_def_property_ui_text(prop, "Auto Smooth Angle",
-                                "Maximum angle between face normals that 'Auto 
Smooth' will operate on");
+                                "Maximum angle between face normals that will 
be considered as smooth "
+                                "(unused if custom split normals data are 
available)");
        RNA_def_property_update(prop, 0, "rna_Mesh_update_data");
 
        RNA_define_verify_sdna(false);

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to