diff --git a/src/main.rs b/src/main.rs index e285b45..29238c0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -79,7 +79,7 @@ fn setup( let lower_bound = -100.; let upper_bound = 100.; - for i in 0..100 { + for i in 0..1000 { use std::f32::consts::TAU; let x = small_rng.gen_range(lower_bound..=upper_bound); @@ -95,7 +95,7 @@ fn setup( .with_translation(Vec3::new(x, y, 0.)), ..default() }, - velocity: Velocity(Vec2::from_angle(angle) * 100.), + velocity: Velocity(Vec2::from_angle(angle) * 200.), ..default() }); }