[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31215] trunk/blender/source/blender/ makesrna/intern/rna_smoke.c: Smoke:

Daniel Genrich daniel.genrich at gmx.net
Tue Aug 10 15:06:45 CEST 2010


Revision: 31215
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31215
Author:   genscher
Date:     2010-08-10 15:06:45 +0200 (Tue, 10 Aug 2010)

Log Message:
-----------
Smoke:
- Fixing UI glitch so that range and UI range now matches
- Increased max to 400 secs (at 25 FPS) to allow more artistic freedom

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_smoke.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_smoke.c	2010-08-10 10:26:25 UTC (rev 31214)
+++ trunk/blender/source/blender/makesrna/intern/rna_smoke.c	2010-08-10 13:06:45 UTC (rev 31215)
@@ -205,8 +205,8 @@
 
 	prop= RNA_def_property(srna, "dissolve_speed", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "diss_speed");
-	RNA_def_property_range(prop, 1.0, 100.0);
-	RNA_def_property_ui_range(prop, 1.0, 1000.0, 1, 0);
+	RNA_def_property_range(prop, 1.0, 10000.0);
+	RNA_def_property_ui_range(prop, 1.0, 10000.0, 1, 0);
 	RNA_def_property_ui_text(prop, "Dissolve Speed", "Dissolve Speed");
 	RNA_def_property_update(prop, 0, NULL);
 





More information about the Bf-blender-cvs mailing list