[Bf-blender-cvs] [55e3be5] master: Fix T36756: Use Frame Rate option toolip was unclear about which FPS value to respect

Mitchell Stokes noreply at git.blender.org
Mon Nov 18 23:19:24 CET 2013


Commit: 55e3be560e5895be593dcf93a50dcd09631729b8
Author: Mitchell Stokes
Date:   Mon Nov 18 14:18:46 2013 -0800
http://developer.blender.org/rB55e3be560e5895be593dcf93a50dcd09631729b8

Fix T36756: Use Frame Rate option toolip was unclear about which FPS value to respect

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

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

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

diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 2a68f0a..4d8592e 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -3428,7 +3428,8 @@ static void rna_def_scene_game_data(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "use_frame_rate", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", GAME_ENABLE_ALL_FRAMES);
 	RNA_def_property_ui_text(prop, "Use Frame Rate",
-	                         "Respect the frame rate rather than rendering as many frames as possible");
+	                         "Respect the frame rate from the Physics panel in the world properties "
+	                         "rather than rendering as many frames as possible");
 
 	prop = RNA_def_property(srna, "use_display_lists", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", GAME_DISPLAY_LISTS);




More information about the Bf-blender-cvs mailing list