[Bf-blender-cvs] [3134c786615] functions: remove turbulence force to have less distorted profiles

Jacques Lucke noreply at git.blender.org
Wed Jun 19 10:37:33 CEST 2019


Commit: 3134c7866159313216fa30b122c525e775ade1f8
Author: Jacques Lucke
Date:   Wed Jun 19 10:34:30 2019 +0200
Branches: functions
https://developer.blender.org/rB3134c7866159313216fa30b122c525e775ade1f8

remove turbulence force to have less distorted profiles

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

M	source/blender/simulations/bparticles/c_wrapper.cpp

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

diff --git a/source/blender/simulations/bparticles/c_wrapper.cpp b/source/blender/simulations/bparticles/c_wrapper.cpp
index 4f94ddef2e7..7315705683d 100644
--- a/source/blender/simulations/bparticles/c_wrapper.cpp
+++ b/source/blender/simulations/bparticles/c_wrapper.cpp
@@ -110,9 +110,8 @@ BParticlesDescription BParticles_playground_description(float control1,
   auto emitter1 = BParticles::new_point_emitter(emitter_position);
   auto emitter2 = BParticles::new_surface_emitter(mesh);
 
-  Description *description = new Description(
-      {new TestForce(control1), new TurbulenceForce(control2)},
-      {emitter1.release(), emitter2.release()});
+  Description *description = new Description({new TestForce(control1)},
+                                             {emitter1.release(), emitter2.release()});
   return wrap(description);
 }
 void BParticles_description_free(BParticlesDescription description_c)



More information about the Bf-blender-cvs mailing list