Create a new fields-aware version of the "Set Curve Handles" node.
Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
The code looks good to me.
| source/blender/nodes/geometry/nodes/node_geo_curve_set_handles.cc | ||
|---|---|---|
| 29 | Now that socket visualization is in master, this can have .supports_field(); on it. | |
Comment Actions
Just one small comment, otherwise this is good to go.
| source/blender/nodes/geometry/nodes/node_geo_curve_set_handles.cc | ||
|---|---|---|
| 87 | has_spline_with_type has to iterate over all of the splines, so it would be a bit more simple/efficient to just use has_bezier_spline = true; after checking the spline's type below. | |