From c15ae2e87b26cfeb3f299dedbd566825a70b2611 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Thu, 30 Jun 2022 19:30:06 -0500 Subject: Fix: Correct attribute names in resample curves code --- source/blender/geometry/intern/resample_curves.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/geometry') diff --git a/source/blender/geometry/intern/resample_curves.cc b/source/blender/geometry/intern/resample_curves.cc index 36525e1bdf0..c18c776fead 100644 --- a/source/blender/geometry/intern/resample_curves.cc +++ b/source/blender/geometry/intern/resample_curves.cc @@ -77,8 +77,8 @@ static bool interpolate_attribute_to_poly_curve(const bke::AttributeIDRef &attri static const Set no_interpolation{{ "handle_type_left", "handle_type_right", - "handle_position_right", - "handle_position_left", + "handle_right", + "handle_left", "nurbs_weight", }}; return !(attribute_id.is_named() && no_interpolation.contains(attribute_id.name())); -- cgit v1.2.3