Curves: Add support for proportional editing #104620

Closed
Falk David wants to merge 15 commits from filedescriptor:curves-proportional-editing into blender-v3.5-release

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 5db60f8f72 - Show all commits

View File

@ -122,7 +122,9 @@ static void createTransCurvesVerts(bContext * /*C*/, TransInfo *t)
td.flag |= TD_NOTCONNECTED;
td.dist = FLT_MAX;
}
continue;
if (is_prop_connected) {
continue;
}
}
const Span<float3> positions_curve = positions_read.slice(points_by_curve[curve_i]);