[Bf-blender-cvs] [0f25e779204] fluid-mantaflow: more flexible particle threshold velocity

Sebastián Barschkis noreply at git.blender.org
Thu Jul 6 22:38:18 CEST 2017


Commit: 0f25e779204844cc71cd0aa39f981ddbc3853925
Author: Sebastián Barschkis
Date:   Thu Jul 6 22:37:52 2017 +0200
Branches: fluid-mantaflow
https://developer.blender.org/rB0f25e779204844cc71cd0aa39f981ddbc3853925

more flexible particle threshold velocity

===================================================================

M	source/blender/makesrna/intern/rna_smoke.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_smoke.c b/source/blender/makesrna/intern/rna_smoke.c
index 0c82f4fecc1..52391593916 100644
--- a/source/blender/makesrna/intern/rna_smoke.c
+++ b/source/blender/makesrna/intern/rna_smoke.c
@@ -1207,7 +1207,7 @@ static void rna_def_smoke_domain_settings(BlenderRNA *brna)
 	RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Smoke_reset");
 
 	prop = RNA_def_property(srna, "particle_velocity_threshold", PROP_FLOAT, PROP_NONE);
-	RNA_def_property_range(prop, 0.0, 10.0);
+	RNA_def_property_range(prop, 0.0, 1000.0);
 	RNA_def_property_ui_range(prop, 0.0, 10.0, 0.02, 5);
 	RNA_def_property_ui_text(prop, "Threshold", "Velocity threshold for drop particle generation (higher value results in fewer drops)");
 	RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Smoke_resetCache");




More information about the Bf-blender-cvs mailing list