Skip to content

Commit

Permalink
Update to latest main.
Browse files Browse the repository at this point in the history
  • Loading branch information
spectria-limina committed Feb 7, 2024
1 parent 843275b commit 2179bba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_render/src/mesh/primitives/dim2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ impl CircularSectorMeshBuilder {
.with_inserted_attribute(Mesh::ATTRIBUTE_POSITION, positions)
.with_inserted_attribute(Mesh::ATTRIBUTE_NORMAL, normals)
.with_inserted_attribute(Mesh::ATTRIBUTE_UV_0, uvs)
.with_indices(Some(Indices::U32(indices)))
.with_inserted_indices(Indices::U32(indices))
}
}

Expand Down Expand Up @@ -256,7 +256,7 @@ impl CircularSegmentMeshBuilder {
.with_inserted_attribute(Mesh::ATTRIBUTE_POSITION, positions)
.with_inserted_attribute(Mesh::ATTRIBUTE_NORMAL, normals)
.with_inserted_attribute(Mesh::ATTRIBUTE_UV_0, uvs)
.with_indices(Some(Indices::U32(indices)))
.with_inserted_indices(Indices::U32(indices))
}
}

Expand Down

0 comments on commit 2179bba

Please sign in to comment.