summaryrefslogtreecommitdiff
path: root/engine/src/file_format/wavefront
diff options
context:
space:
mode:
Diffstat (limited to 'engine/src/file_format/wavefront')
-rw-r--r--engine/src/file_format/wavefront/obj.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/engine/src/file_format/wavefront/obj.rs b/engine/src/file_format/wavefront/obj.rs
index 7e1629a..29fc985 100644
--- a/engine/src/file_format/wavefront/obj.rs
+++ b/engine/src/file_format/wavefront/obj.rs
@@ -4,7 +4,6 @@
use std::path::PathBuf;
-use crate::color::Color;
use crate::file_format::wavefront::common::{
keyword,
parse_statement_line,
@@ -239,7 +238,6 @@ impl FaceVertex
Ok(VertexBuilder::new()
.pos(vertex_pos)
- .color(Color::WHITE_F32)
.texture_coords(texture_pos)
.normal(vertex_normal)
.build()