diff --git a/examples/stress_tests/many_animated_sprites.rs b/examples/stress_tests/many_animated_sprites.rs index 4ea6d9fae01bf..91586b8dace7d 100644 --- a/examples/stress_tests/many_animated_sprites.rs +++ b/examples/stress_tests/many_animated_sprites.rs @@ -51,10 +51,8 @@ fn setup( let texture_atlas_handle = texture_atlases.add(texture_atlas); // Spawns the camera - commands.spawn(( - Camera2dBundle::default(), - Transform::from_xyz(0.0, 0.0, 1000.0), - )); + + commands.spawn(Camera2dBundle::default()); // Builds and spawns the sprites for y in -half_y..half_y { diff --git a/examples/stress_tests/many_sprites.rs b/examples/stress_tests/many_sprites.rs index 1a0e22a8472c0..34e7d64d30af1 100644 --- a/examples/stress_tests/many_sprites.rs +++ b/examples/stress_tests/many_sprites.rs @@ -55,10 +55,8 @@ fn setup(mut commands: Commands, assets: Res, color_tint: Res