From f75441014cc90afab46ec2d9872e1261263a43b5 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 2 Jan 2014 12:37:00 +1300 Subject: 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. --- source/blender/makesrna/intern/rna_lattice.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/makesrna/intern/rna_lattice.c b/source/blender/makesrna/intern/rna_lattice.c index 2580cd9cff8..9b22f780ee6 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"); -- cgit v1.2.3