[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [30028] branches/soc-2010-aligorith-2/ source/blender/makesrna/intern/rna_rigidbody.c: Bullet SoC - Tooltip fiddling

Joshua Leung aligorith at gmail.com
Tue Jul 6 13:14:52 CEST 2010


Revision: 30028
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=30028
Author:   aligorith
Date:     2010-07-06 13:14:51 +0200 (Tue, 06 Jul 2010)

Log Message:
-----------
Bullet SoC - Tooltip fiddling

Modified Paths:
--------------
    branches/soc-2010-aligorith-2/source/blender/makesrna/intern/rna_rigidbody.c

Modified: branches/soc-2010-aligorith-2/source/blender/makesrna/intern/rna_rigidbody.c
===================================================================
--- branches/soc-2010-aligorith-2/source/blender/makesrna/intern/rna_rigidbody.c	2010-07-06 11:14:35 UTC (rev 30027)
+++ branches/soc-2010-aligorith-2/source/blender/makesrna/intern/rna_rigidbody.c	2010-07-06 11:14:51 UTC (rev 30028)
@@ -229,18 +229,18 @@
 	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
 	RNA_def_property_int_sdna(prop, NULL, "sframe");
 	RNA_def_property_range(prop, MINAFRAME, MAXFRAME);
-	RNA_def_property_ui_text(prop, "Start Frame", "Frame that simulation starts on (used as a reference point for resetting the sim)");
+	RNA_def_property_ui_text(prop, "Start Frame", "Frame that simulation starts on (used as a reference point for resetting it)");
 	RNA_def_property_update(prop, NC_SCENE, NULL);
 	
 	/* timesteps */
 	prop= RNA_def_property(srna, "fixed_time_step", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "fixed_timestep");
-	RNA_def_property_ui_text(prop, "Fixed Time Step", "Size of substeps physics simulator internally uses when stepping the simulation (smaller steps are more accurate)");
+	RNA_def_property_ui_text(prop, "Fixed Time Step", "Size of substeps used when stepping the simulation. Smaller values (than default of 1/60s) for more accuracy");
 	RNA_def_property_update(prop, NC_SCENE, NULL);
 	
 	prop= RNA_def_property(srna, "max_sub_steps", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "max_substeps");
-	RNA_def_property_ui_text(prop, "Max SubSteps", "Maximum number of substeps (i.e. steps of fixed_time_step size) to take (lower values for better performance/less accuracy)");
+	RNA_def_property_ui_text(prop, "Max SubSteps", "Maximum number of substeps to take. Lower values for better performance and less accuracy. Value=0 is unpredictable and not recommended");
 	RNA_def_property_update(prop, NC_SCENE, NULL);
 	
 	// TODO:





More information about the Bf-blender-cvs mailing list