Don't have Bevy resize to full-screen

Now that I have a custom canvas, Bevy should adopt that as it's render
target rather than further modifying it.
This commit is contained in:
2025-10-28 16:23:17 -05:00
parent e16c0e2e32
commit 7482130ac2

View File

@@ -11,7 +11,6 @@ fn main() {
.add_plugins(DefaultPlugins.set(WindowPlugin {
primary_window: Some(Window {
canvas: Some("#boids-canvas".to_owned()),
fit_canvas_to_parent: true,
prevent_default_event_handling: false,
..default()
}),