Fix: curves edit hints not propagated in Join Geometry node

Found while investigating why crazy-space editing didn't work in T100026.
This commit is contained in:
Jacques Lucke
2022-07-27 18:38:45 +02:00
parent 6e5eb46d73
commit 0dcfd93c6e

View File

@@ -185,6 +185,7 @@ static void node_geo_exec(GeoNodeExecParams params)
join_component_type<InstancesComponent>(geometry_sets, geometry_set_result);
join_component_type<VolumeComponent>(geometry_sets, geometry_set_result);
join_component_type<CurveComponent>(geometry_sets, geometry_set_result);
join_component_type<GeometryComponentEditData>(geometry_sets, geometry_set_result);
params.set_output("Geometry", std::move(geometry_set_result));
}