WIP: Brush assets project #106303

Draft
Julian Eisel wants to merge 351 commits from brush-assets-project into main

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

View File

@ -146,7 +146,7 @@ class OBJMesh : NonCopyable {
if (uv_coords_.is_empty()) {
return {};
}
BLI_assert(face_index < export_mesh_->faces_num);
BLI_assert(face_index < mesh_faces_.size());
return corner_to_uv_index_.as_span().slice(mesh_faces_[face_index]);
}