Geometry Nodes: realize instances in subdivide node

This makes it consistent with the Subdivision Surface node.
This commit is contained in:
Jacques Lucke 2021-04-13 13:47:33 +02:00
parent 961b6a6f7e
commit 93d8c7516a
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ namespace blender::nodes {
static void geo_node_subdivide_exec(GeoNodeExecParams params)
{
GeometrySet geometry_set = params.extract_input<GeometrySet>("Geometry");
geometry_set = geometry_set_realize_instances(geometry_set);
if (!geometry_set.has_mesh()) {
params.set_output("Geometry", geometry_set);