Skip to content

Commit

Permalink
Use default for RenderAssetUsages (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
rparrett authored Aug 19, 2024
1 parent 6381dad commit fcd8712
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 @@ -132,7 +132,7 @@ fn stroke(
fn build_mesh(buffers: &VertexBuffers) -> Mesh {
let mut mesh = Mesh::new(
PrimitiveTopology::TriangleList,
RenderAssetUsages::RENDER_WORLD,
RenderAssetUsages::default(),
);
mesh.insert_indices(Indices::U32(buffers.indices.clone()));
mesh.insert_attribute(
Expand Down

0 comments on commit fcd8712

Please sign in to comment.