Skip to content

Commit

Permalink
load zeroed UVs as fallback in gltf loader
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobhellermann committed Apr 13, 2021
1 parent 7342d46 commit ab6d2fb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/bevy_gltf/src/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ async fn load_gltf<'a, 'b>(
.map(|v| VertexAttributeValues::Float2(v.into_f32().collect()))
{
mesh.set_attribute(Mesh::ATTRIBUTE_UV_0, vertex_attribute);
} else {
let len = mesh.count_vertices();
let uvs = vec![[0.0, 0.0]; len];
mesh.set_attribute(Mesh::ATTRIBUTE_UV_0, uvs);
}

if let Some(vertex_attribute) = reader
Expand Down

0 comments on commit ab6d2fb

Please sign in to comment.