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:
authorHamed Zaghaghi <hamed.zaghaghi@gmail.com>2008-11-30 17:40:00 +0300
committerHamed Zaghaghi <hamed.zaghaghi@gmail.com>2008-11-30 17:40:00 +0300
commit5464c2e4a8ef638b898f04e3bf0edade367fc0b6 (patch)
tree247858bad80efadfdcf5295fcd6f4b35ee021974 /source/blender/makesrna/intern/rna_sensor.c
parent3a22ddeb04ff48f8217d0921c8d8bae9b34dcc30 (diff)
* controller structs, bController, bExpressionCont and bPythoncont RNFied\n*controllers are available in objects\n* some typos in rna_sensor
Diffstat (limited to 'source/blender/makesrna/intern/rna_sensor.c')
-rw-r--r--source/blender/makesrna/intern/rna_sensor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_sensor.c b/source/blender/makesrna/intern/rna_sensor.c
index 36c44024cb4..1ffc3def450 100644
--- a/source/blender/makesrna/intern/rna_sensor.c
+++ b/source/blender/makesrna/intern/rna_sensor.c
@@ -107,7 +107,7 @@ void rna_def_sensor(BlenderRNA *brna)
prop= RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE);
RNA_def_property_flag(prop, PROP_NOT_EDITABLE);
RNA_def_property_enum_items(prop, sensor_types_items);
- RNA_def_property_ui_text(prop, "Sensor types", "Sensor Types.");
+ RNA_def_property_ui_text(prop, "Sensor Types", "Sensor types.");
prop= RNA_def_property(srna, "invert", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_ui_text(prop, "Invert Output", "Invert the level(output) of this sensor.");
@@ -147,7 +147,7 @@ void rna_def_near_sensor(BlenderRNA *brna)
prop= RNA_def_property(srna, "property", PROP_STRING, PROP_NONE);
RNA_def_property_string_sdna(prop, NULL, "name");
RNA_def_property_string_maxlength(prop, 31);
- RNA_def_property_ui_text(prop, "Property", "Only llok for objects with this property.");
+ RNA_def_property_ui_text(prop, "Property", "Only look for objects with this property.");
prop= RNA_def_property(srna, "distance", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "dist");