[Bf-blender-cvs] [3acf3e9e2ff] master: Geometry Nodes: don't realize instances in Instance on Points node

Jacques Lucke noreply at git.blender.org
Tue Sep 28 17:47:02 CEST 2021


Commit: 3acf3e9e2ff5bb8a93fcad2df925058d3e7ee748
Author: Jacques Lucke
Date:   Tue Sep 28 17:46:20 2021 +0200
Branches: master
https://developer.blender.org/rB3acf3e9e2ff5bb8a93fcad2df925058d3e7ee748

Geometry Nodes: don't realize instances in Instance on Points node

Part of T91672.

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

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

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

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>()) {



More information about the Bf-blender-cvs mailing list