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

This commit is contained in:
Mitchell Stokes 2013-11-18 14:18:46 -08:00
parent 3bc0552c5b
commit 55e3be560e

@ -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);