RNA: correct tips

This commit is contained in:
Campbell Barton 2015-10-12 12:19:27 +11:00
parent ea7ce7fcf4
commit eb6e8521c2
3 changed files with 3 additions and 3 deletions

View File

@ -1724,7 +1724,7 @@ static void rna_def_game_actuator(BlenderRNA *brna)
prop = RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
RNA_def_property_ui_text(prop, "File",
"The file to use depending on the mode (e.g., the blend file to load or a destination "
"for saving a screenshot). Use the \"//\" prefix for a relative path.");
"for saving a screenshot). Use the \"//\" prefix for a relative path");
RNA_def_property_update(prop, NC_LOGIC, NULL);
/*XXX to do: an operator that calls file_browse with relative_path on and blender filtering active */
}

View File

@ -1777,7 +1777,7 @@ static void rna_def_object_game_settings(BlenderRNA *brna)
RNA_def_property_ui_range(prop, 1, 10, 1, 1);
RNA_def_property_int_default(prop, 1);
RNA_def_property_ui_text(prop, "Max Jumps",
"The maximum number of jumps the character can make before it hits the ground.");
"The maximum number of jumps the character can make before it hits the ground");
/* Collision Masks */
prop = RNA_def_property(srna, "collision_group", PROP_BOOLEAN, PROP_LAYER_MEMBER);

View File

@ -1639,7 +1639,7 @@ static void rna_def_softbody(BlenderRNA *brna)
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_range(prop, 0.0f, 1.0f);
RNA_def_property_ui_text(prop, "Goal Default",
"Default Goal (vertex target position) value, when no Vertex Group used");
"Default Goal (vertex target position) value");
RNA_def_property_update(prop, 0, "rna_softbody_update");
prop = RNA_def_property(srna, "goal_spring", PROP_FLOAT, PROP_NONE);