[Bf-blender-cvs] [26141664f0c] master: Fix: Curve fill node doesn't fill real geometry with instances

Hans Goudey noreply at git.blender.org
Fri Sep 24 00:45:53 CEST 2021


Commit: 26141664f0c4db83749e9cbbf992e0f254d379ae
Author: Hans Goudey
Date:   Thu Sep 23 17:45:41 2021 -0500
Branches: master
https://developer.blender.org/rB26141664f0c4db83749e9cbbf992e0f254d379ae

Fix: Curve fill node doesn't fill real geometry with instances

A misplaced return in the middle of the function made it so
the node didn't fill real geometry.

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

M	source/blender/nodes/geometry/nodes/node_geo_curve_fill.cc

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

diff --git a/source/blender/nodes/geometry/nodes/node_geo_curve_fill.cc b/source/blender/nodes/geometry/nodes/node_geo_curve_fill.cc
index 8de2975f9b0..fcafdf93197 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_curve_fill.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_curve_fill.cc
@@ -165,9 +165,6 @@ static void geo_node_curve_fill_exec(GeoNodeExecParams params)
         curve_fill_calculate(geometry_set, mode);
       }
     });
-
-    params.set_output("Mesh", std::move(geometry_set));
-    return;
   }
 
   curve_fill_calculate(geometry_set, mode);



More information about the Bf-blender-cvs mailing list