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:
authorJacques Lucke <jacques@blender.org>2021-09-28 18:46:20 +0300
committerJacques Lucke <jacques@blender.org>2021-09-28 18:46:32 +0300
commit3acf3e9e2ff5bb8a93fcad2df925058d3e7ee748 (patch)
treebce441544d5a7bbfccd70c91d829352654df30c0
parent330a04d7c7928c213c121bedcab9dd77a16d106e (diff)
Geometry Nodes: don't realize instances in Instance on Points node
Part of T91672.
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_instance_on_points.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_instance_on_points.cc b/source/blender/nodes/geometry/nodes/node_geo_instance_on_points.cc
index 21a130da8f9..cf9f04f3fe8 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_instance_on_points.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_instance_on_points.cc
@@ -165,8 +165,6 @@ static void geo_node_instance_on_points_exec(GeoNodeExecParams params)
GeometrySet geometry_set = params.extract_input<GeometrySet>("Points");
GeometrySet geometry_set_out;
- geometry_set = geometry_set_realize_instances(geometry_set);
-
InstancesComponent &instances = geometry_set_out.get_component_for_write<InstancesComponent>();
if (geometry_set.has<MeshComponent>()) {