Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-03-26 05:46:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-26 05:46:12 +0400
commit32f63f6b4c09e610fe5fa3f3081259fedccc5ad9 (patch)
tree0f1b894d3836caa61b4023293bbf367e9f790132 /source/blender/makesrna/intern/rna_actuator.c
parent4fbf4590c9042b1e10ba194f1d613953490303ff (diff)
misc minor changes
- make it clear that navmesh visualize option only works in path mode. - use 2 decimal places for motion-blur shutter speed (user request). - use 'const' for some bmesh functions.
Diffstat (limited to 'source/blender/makesrna/intern/rna_actuator.c')
-rw-r--r--source/blender/makesrna/intern/rna_actuator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_actuator.c b/source/blender/makesrna/intern/rna_actuator.c
index d258c686b99..97ccdae089d 100644
--- a/source/blender/makesrna/intern/rna_actuator.c
+++ b/source/blender/makesrna/intern/rna_actuator.c
@@ -2075,7 +2075,7 @@ static void rna_def_steering_actuator(BlenderRNA *brna)
prop = RNA_def_property(srna, "show_visualization", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", ACT_STEERING_ENABLEVISUALIZATION);
- RNA_def_property_ui_text(prop, "Visualize", "Enable debug visualization");
+ RNA_def_property_ui_text(prop, "Visualize", "Enable debug visualization for 'Path following'");
RNA_def_property_update(prop, NC_LOGIC, NULL);
prop = RNA_def_property(srna, "update_period", PROP_INT, PROP_NONE);