Skip to content

Commit

Permalink
fix: clear color
Browse files Browse the repository at this point in the history
  • Loading branch information
mosure committed Oct 15, 2023
1 parent 0d306e8 commit c68ccc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ fn example_app() {
let mut app = App::new();

// setup for gaussian viewer app
app.insert_resource(ClearColor(Color::rgb_u8(112, 48, 48)));
app.insert_resource(ClearColor(Color::rgb_u8(0, 0, 0)));
app.add_plugins(
DefaultPlugins
.set(ImagePlugin::default_nearest())
Expand Down

0 comments on commit c68ccc7

Please sign in to comment.