Give the window a title
Some checks failed
CI / Formatting (push) Successful in 44s
CI / Clippy (push) Failing after 19m13s

This commit is contained in:
Michael Bradley 2025-03-31 22:31:26 -04:00
parent 0c0c306b25
commit 44541e16e1
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -53,7 +53,15 @@ fn run_app(settings: AppSettings) -> AppExit {
App::new() App::new()
.add_plugins(( .add_plugins((
DefaultPlugins, DefaultPlugins.set(WindowPlugin {
primary_window: Window {
title: "Distributed physics test".into(),
fit_canvas_to_parent: true,
..default()
}
.into(),
..default()
}),
PhysicsPlugins::default().with_length_unit(50.0), PhysicsPlugins::default().with_length_unit(50.0),
)) ))
.add_systems(Startup, (setup_balls, setup_ui, setup_player, setup_walls)) .add_systems(Startup, (setup_balls, setup_ui, setup_player, setup_walls))
@ -89,7 +97,7 @@ fn setup_balls(
region: Res<PlayableArea>, region: Res<PlayableArea>,
) { ) {
let mut random = rng(); let mut random = rng();
for _ in 0..20 { for _ in 0..50 {
let circle = Circle::new(random.random_range(BALL_SIZES)); let circle = Circle::new(random.random_range(BALL_SIZES));
commands.spawn(( commands.spawn((
Ball, Ball,