Skip to content

Commit

Permalink
Update vertex.rs to use "white" instead of "transparent" as default
Browse files Browse the repository at this point in the history
  • Loading branch information
chuigda authored and flomonster committed Dec 6, 2024
1 parent cd1cf31 commit f9eac84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scene/model/vertex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ impl Default for Vertex {
tangent: Zero::zero(),
tex_coords: Zero::zero(),
#[cfg(feature = "vertex-color")]
color: Vector4::new(0, 0, 0, 0),
color: Vector4::new(1, 1, 1, 1),
}
}
}

0 comments on commit f9eac84

Please sign in to comment.