Blender Git Loki
Git Commits -> Revision 81f552e
Revision 81f552e by Hans Goudey (master) September 29, 2021, 20:29 (GMT) |
Geometry Nodes: Expose Bezier handle positions as an attribute This commit exposes left and right bezier handles as an attribute. Interaction basically works like edit mode. If you move an aligned handle, it also moves the opposite handle of the control point. The difference is that you can't edit "Auto" or "Vector" handles, you have to first use the "Set Handle Type" node. That gives the handle types a bit more meaning in the node tree-- changing them in edit mod is more like a "UI override". The attributes are named `handle_start` and `handle_end`, which is the same name used in the curve RNA API. A new virtual array implementation is added which handles the case of splines that don't have these attributes, and it also calls two new functions on `BezierSpline` to set the handle position accounting for aligned handles. The virtual arrays and attribute providers will be refactored (probably templated) in the future, as a next step after the last built-in curve attribute provider has landed. Differential Revision: https://developer.blender.org/D12005 |
Commit Details:
Full Hash: 81f552e9ad1ab5705ef69cf8e7ff7ee67575d45f
Parent Commit: cd03f5b
Lines Changed: +332, -8
5 Modified Paths:
/source/blender/blenkernel/BKE_spline.hh (+3, -0) (Diff)
/source/blender/blenkernel/intern/geometry_component_curve.cc (+277, -6) (Diff)
/source/blender/blenkernel/intern/geometry_set_instances.cc (+1, -1) (Diff)
/source/blender/blenkernel/intern/spline_bezier.cc (+50, -0) (Diff)
/source/blender/nodes/geometry/nodes/node_geo_join_geometry.cc (+1, -1) (Diff)
/source/blender/blenkernel/intern/geometry_component_curve.cc (+277, -6) (Diff)
/source/blender/blenkernel/intern/geometry_set_instances.cc (+1, -1) (Diff)
/source/blender/blenkernel/intern/spline_bezier.cc (+50, -0) (Diff)
/source/blender/nodes/geometry/nodes/node_geo_join_geometry.cc (+1, -1) (Diff)