Revision: 36196
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=36196
Author:   lmg
Date:     2011-04-17 08:38:27 +0000 (Sun, 17 Apr 2011)
Log Message:
-----------
fix #26957

spotlights halo and intensity tooltip had "(buffer shadow)" in there,
while it works just fine with no-shadow and ray-shadow.

the volumetric "step" property is only visible with buffershadows
anyways.

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_lamp.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_lamp.c     2011-04-17 
06:17:37 UTC (rev 36195)
+++ trunk/blender/source/blender/makesrna/intern/rna_lamp.c     2011-04-17 
08:38:27 UTC (rev 36196)
@@ -607,13 +607,13 @@
 
        prop= RNA_def_property(srna, "use_halo", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "mode", LA_HALO);
-       RNA_def_property_ui_text(prop, "Halo", "Renders spotlight with a 
volumetric halo (Buffer Shadows)");
+       RNA_def_property_ui_text(prop, "Halo", "Renders spotlight with a 
volumetric halo");
        RNA_def_property_update(prop, 0, "rna_Lamp_update");
 
        prop= RNA_def_property(srna, "halo_intensity", PROP_FLOAT, PROP_NONE);
        RNA_def_property_float_sdna(prop, NULL, "haint");
        RNA_def_property_ui_range(prop, 0, 5.0, 0.1, 3);
-       RNA_def_property_ui_text(prop, "Halo Intensity", "Brightness of the 
spotlight's halo cone  (Buffer Shadows)");
+       RNA_def_property_ui_text(prop, "Halo Intensity", "Brightness of the 
spotlight's halo cone");
        RNA_def_property_update(prop, 0, "rna_Lamp_update");
 
        prop= RNA_def_property(srna, "halo_step", PROP_INT, PROP_NONE);

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to