Skip to content

Commit

Permalink
Fix CI (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nilirad committed Feb 13, 2024
1 parent 9a4d801 commit 6bddadd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ fn build_mesh(buffers: &VertexBuffers) -> Mesh {
PrimitiveTopology::TriangleList,
RenderAssetUsages::RENDER_WORLD,
);
mesh.set_indices(Some(Indices::U32(buffers.indices.clone())));
mesh.insert_indices(Indices::U32(buffers.indices.clone()));
mesh.insert_attribute(
Mesh::ATTRIBUTE_POSITION,
buffers
Expand Down

0 comments on commit 6bddadd

Please sign in to comment.