USD Export: New Curves/Hair Support #105375

Merged
Michael Kowalski merged 19 commits from SonnyCampbell_Unity/blender:unity/T102376-USD-Curves-Export into main 2023-05-16 20:04:26 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit a1cf11eafb - Show all commits

View File

@ -381,7 +381,7 @@ void USDCurvesWriter::do_write(HierarchyContext &context)
});
if (number_of_curve_types > 1) {
WM_report(RPT_WARNING, "Cannot export mixed curve types.");
WM_report(RPT_WARNING, "Cannot export mixed curve types in the same Curve object.");
return;
SonnyCampbell_Unity marked this conversation as resolved Outdated

Small thing, but Curve should be Curves here, same with below.

Small thing, but `Curve` should be `Curves` here, same with below.
}
@ -397,7 +397,7 @@ void USDCurvesWriter::do_write(HierarchyContext &context)
}
if (!all_same_cyclic_type) {
WM_report(RPT_WARNING, "Cannot export mixed cyclic and non-cyclic curves.");
WM_report(RPT_WARNING, "Cannot export mixed cyclic and non-cyclic curves in the same Curve object.");
return;
}