Skip to content

Commit

Permalink
fullscreen tick in demo
Browse files Browse the repository at this point in the history
  • Loading branch information
Uriopass committed Dec 10, 2023
1 parent cf1b737 commit a004790
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engine_demo/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,8 @@ impl engine::framework::State for State {
ui.add(egui::Slider::new(&mut self.camera_speed, 1.0..=100.0).text("Camera speed"));
ui.checkbox(&mut self.freeze_cam, "Freeze camera");

ui.checkbox(&mut self.settings.vsync, "Vsync");
ui.checkbox(&mut self.settings.fullscreen, "Fullscreen");
ui.checkbox(&mut self.settings.vsync, "VSync");
ui.checkbox(&mut self.settings.fog, "Fog");
ui.checkbox(&mut self.settings.ssao, "SSAO");
ui.checkbox(&mut self.settings.terrain_grid, "Terrain grid");
Expand Down

0 comments on commit a004790

Please sign in to comment.