use bevy::prelude::*; use bevy_pancam::{PanCam, PanCamPlugin}; use rand::prelude::random; fn main() { App::new() .add_plugins((DefaultPlugins, PanCamPlugin::default())) .add_systems(Startup, setup) .run(); } fn setup(mut commands: Commands) { commands.spawn(( Camera2dBundle::default(), PanCam { // Set max scale in order to prevent the camera from zooming too far out max_scale: 40., // Set min scale in order to prevent the camera from zooming too far in min_scale: 1., ..default() }, )); let n = 20; let spacing = 50.; let offset = spacing * n as f32 / 2.; let custom_size = Some(Vec2::new(spacing, spacing)); for x in 0..n { for y in 0..n { let x = x as f32 * spacing - offset; let y = y as f32 * spacing - offset; let color = Color::hsl(240., random::() * 0.3, random::() * 0.3); commands.spawn(SpriteBundle { sprite: Sprite { color, custom_size, ..default() }, transform: Transform::from_xyz(x, y, 0.), ..default() }); } } }