Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2021-09-24 01:45:41 +0300
committerHans Goudey <h.goudey@me.com>2021-09-24 01:45:41 +0300
commit26141664f0c4db83749e9cbbf992e0f254d379ae (patch)
tree51b1d47b66d4ac91c0ff05886c61ec018d1e4075 /source/blender/nodes/geometry/nodes/node_geo_curve_fill.cc
parentf7608276e35d03d5ad2d38f2189c6d6f5279c432 (diff)
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.
Diffstat (limited to 'source/blender/nodes/geometry/nodes/node_geo_curve_fill.cc')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_curve_fill.cc3
1 files changed, 0 insertions, 3 deletions
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);