We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68290fa commit cf04c24Copy full SHA for cf04c24
crates/bevy_gltf/src/loader.rs
@@ -143,7 +143,7 @@ async fn load_gltf<'a, 'b>(
143
} else {
144
let len = mesh.count_vertices();
145
let uvs = vec![[0.0, 0.0]; len];
146
- bevy_log::warn!("missing `TEXCOORD_0` vertex attribute, loading zeroed out UVs");
+ bevy_log::debug!("missing `TEXCOORD_0` vertex attribute, loading zeroed out UVs");
147
mesh.set_attribute(Mesh::ATTRIBUTE_UV_0, uvs);
148
}
149
0 commit comments