[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51207] trunk/blender/source/blender/ makesrna/intern: RNA minor fixes:

Bastien Montagne montagne29 at wanadoo.fr
Tue Oct 9 10:40:21 CEST 2012


Revision: 51207
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=51207
Author:   mont29
Date:     2012-10-09 08:40:20 +0000 (Tue, 09 Oct 2012)
Log Message:
-----------
RNA minor fixes:
*Bezier points' softbody weight was called just "weight", when it is "weight_softbody" for NURBS ones, made it the same!
*Added "weight_softbody" to Lattice points as well.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_curve.c
    trunk/blender/source/blender/makesrna/intern/rna_lattice.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_curve.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_curve.c	2012-10-09 07:13:11 UTC (rev 51206)
+++ trunk/blender/source/blender/makesrna/intern/rna_curve.c	2012-10-09 08:40:20 UTC (rev 51207)
@@ -814,7 +814,8 @@
 	RNA_def_property_ui_text(prop, "Tilt", "Tilt in 3D View");
 	RNA_def_property_update(prop, 0, "rna_Curve_update_data");
 
-	prop = RNA_def_property(srna, "weight", PROP_FLOAT, PROP_NONE);
+	prop = RNA_def_property(srna, "weight_softbody", PROP_FLOAT, PROP_NONE);
+	RNA_def_property_float_sdna(prop, NULL, "weight");
 	RNA_def_property_range(prop, 0.01f, 100.0f);
 	RNA_def_property_ui_text(prop, "Weight", "Softbody goal weight");
 	RNA_def_property_update(prop, 0, "rna_Curve_update_data");

Modified: trunk/blender/source/blender/makesrna/intern/rna_lattice.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_lattice.c	2012-10-09 07:13:11 UTC (rev 51206)
+++ trunk/blender/source/blender/makesrna/intern/rna_lattice.c	2012-10-09 08:40:20 UTC (rev 51207)
@@ -240,6 +240,12 @@
 	RNA_def_property_ui_text(prop, "Deformed Location", "");
 	RNA_def_property_update(prop, 0, "rna_Lattice_update_data");
 
+	prop = RNA_def_property(srna, "weight_softbody", PROP_FLOAT, PROP_NONE);
+	RNA_def_property_float_sdna(prop, NULL, "weight");
+	RNA_def_property_range(prop, 0.01f, 100.0f);
+	RNA_def_property_ui_text(prop, "Weight", "Softbody goal weight");
+	RNA_def_property_update(prop, 0, "rna_Lattice_update_data");
+
 	prop = RNA_def_property(srna, "groups", PROP_COLLECTION, PROP_NONE);
 	RNA_def_property_collection_funcs(prop, "rna_LatticePoint_groups_begin", "rna_iterator_array_next",
 	                                  "rna_iterator_array_end", "rna_iterator_array_get",
@@ -320,7 +326,7 @@
 	RNA_def_property_collection_funcs(prop, "rna_Lattice_points_begin", "rna_iterator_array_next",
 	                                  "rna_iterator_array_end", "rna_iterator_array_get", NULL, NULL, NULL, NULL);
 	RNA_def_property_ui_text(prop, "Points", "Points of the lattice");
-	
+
 	/* pointers */
 	rna_def_animdata_common(srna);
 }




More information about the Bf-blender-cvs mailing list