[Bf-blender-cvs] [b6027a2f152] functions-experimental-refactor: fix Is In Group input

Jacques Lucke noreply at git.blender.org
Fri Nov 8 20:36:51 CET 2019


Commit: b6027a2f1520f9c25313cbc4986abd197cfc3ee7
Author: Jacques Lucke
Date:   Fri Nov 8 20:34:01 2019 +0100
Branches: functions-experimental-refactor
https://developer.blender.org/rBb6027a2f1520f9c25313cbc4986abd197cfc3ee7

fix Is In Group input

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

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

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

diff --git a/source/blender/simulations/bparticles/particle_function_builder.cpp b/source/blender/simulations/bparticles/particle_function_builder.cpp
index a5f4d8b946a..22cfd42b9b0 100644
--- a/source/blender/simulations/bparticles/particle_function_builder.cpp
+++ b/source/blender/simulations/bparticles/particle_function_builder.cpp
@@ -113,6 +113,7 @@ static ParticleFunctionInputProvider *INPUT_is_in_group(VTreeMFNetwork &vtree_da
   std::string group_name;
   BLI::destruct(&group_name);
   params_builder.add_single_output(ArrayRef<std::string>(&group_name, 1));
+  fn.call(FN::MFMask({0}), params_builder.build(), context_builder.build());
 
   return new IsInGroupInputProvider(group_name);
 }



More information about the Bf-blender-cvs mailing list