Commit: 0dcfd93c6eebc1a3bb6a4026c01387b73ed91ff3
Author: Jacques Lucke
Date:   Wed Jul 27 18:38:45 2022 +0200
Branches: blender-v3.3-release
https://developer.blender.org/rB0dcfd93c6eebc1a3bb6a4026c01387b73ed91ff3

Fix: curves edit hints not propagated in Join Geometry node

Found while investigating why crazy-space editing didn't work in T100026.

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

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

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

diff --git a/source/blender/nodes/geometry/nodes/node_geo_join_geometry.cc 
b/source/blender/nodes/geometry/nodes/node_geo_join_geometry.cc
index 083a505539a..023d7a32a61 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_join_geometry.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_join_geometry.cc
@@ -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));
 }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
List details, subscription details or unsubscribe:
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to