[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [34434] trunk/blender/source/blender/ makesrna/intern/rna_sensor.c: BGE Logic UI: Near Sensor tooltip update

Dalai Felinto dfelinto at gmail.com
Fri Jan 21 05:07:35 CET 2011


Revision: 34434
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=34434
Author:   dfelinto
Date:     2011-01-21 04:07:32 +0000 (Fri, 21 Jan 2011)
Log Message:
-----------
BGE Logic UI: Near Sensor tooltip update

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_sensor.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_sensor.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_sensor.c	2011-01-21 03:18:01 UTC (rev 34433)
+++ trunk/blender/source/blender/makesrna/intern/rna_sensor.c	2011-01-21 04:07:32 UTC (rev 34434)
@@ -332,7 +332,7 @@
 
 	prop= RNA_def_property(srna, "property", PROP_STRING, PROP_NONE);
 	RNA_def_property_string_sdna(prop, NULL, "name");
-	RNA_def_property_ui_text(prop, "Property", "Only look for objects with this property");
+	RNA_def_property_ui_text(prop, "Property", "Only look for objects with this property. Leave it empty to detect all objects.");
 	RNA_def_property_update(prop, NC_LOGIC, NULL);
 
 	prop= RNA_def_property(srna, "distance", PROP_FLOAT, PROP_NONE);
@@ -343,7 +343,7 @@
 
 	prop= RNA_def_property(srna, "reset_distance", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "resetdist");
-	RNA_def_property_ui_text(prop, "Reset Distance", "");
+	RNA_def_property_ui_text(prop, "Reset Distance", "The distance where the sensor forgets the actor.");
 	RNA_def_property_range(prop, 0.0f, 10000.0f);
 	RNA_def_property_update(prop, NC_LOGIC, NULL);
 }




More information about the Bf-blender-cvs mailing list