Fix #124297: GPv3: Build modifier natural drawing speed fix #124350

Merged
Falk David merged 6 commits from ChengduLittleA/blender:fix-124297 into main 2024-07-16 10:26:50 +02:00
Showing only changes of commit 2393f1b4c7 - Show all commits

View File

@ -487,7 +487,7 @@ static float get_factor_from_draw_speed(const bke::CurvesGeometry &curves,
for (const int point : points_by_curve[curve]) {
times[point] = start_time + delta_times[point];
}
const float this_delta_time = times[points_by_curve[curve].last()];
const float this_delta_time = delta_times[points_by_curve[curve].last()];
previous_end_time = init_times[curve] + this_delta_time;
accumulated_delta_time += this_delta_time;
}