Commit: f75441014cc90afab46ec2d9872e1261263a43b5
Author: Joshua Leung
Date:   Thu Jan 2 12:37:00 2014 +1300
https://developer.blender.org/rBf75441014cc90afab46ec2d9872e1261263a43b5

Fix T38025: Key-framing lattice points fails

Clarified the tooltip/description on the LatticePoint.co property to make it
clear that it shouldn't be edited, and that LatticePoint.co_deform should be
used instead.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_lattice.c 
b/source/blender/makesrna/intern/rna_lattice.c
index 2580cd9..9b22f78 100644
--- a/source/blender/makesrna/intern/rna_lattice.c
+++ b/source/blender/makesrna/intern/rna_lattice.c
@@ -261,7 +261,9 @@ static void rna_def_latticepoint(BlenderRNA *brna)
        RNA_def_property_array(prop, 3);
        RNA_def_property_clear_flag(prop, PROP_EDITABLE);
        RNA_def_property_float_funcs(prop, "rna_LatticePoint_co_get", NULL, 
NULL);
-       RNA_def_property_ui_text(prop, "Location", "");
+       RNA_def_property_ui_text(prop, "Location",
+                                "Original undeformed location used to 
calculate the strength of the deform effect "
+                                "(edit/animate the Deformed Location 
instead)");
 
        prop = RNA_def_property(srna, "co_deform", PROP_FLOAT, 
PROP_TRANSLATION);
        RNA_def_property_float_sdna(prop, NULL, "vec");

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

Reply via email to