-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathparallax.rs
68 lines (62 loc) · 1.75 KB
/
parallax.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
mod shared;
use std::collections::VecDeque;
use bevy::{prelude::*, window::PrimaryWindow};
use bevy_scroller::{
Scroller, ScrollerBundle, ScrollerDirection, ScrollerSize, SingleSpriteGenerator,
};
use shared::get_app;
fn main() {
get_app("parallax".into()).add_systems(Startup, start).run();
}
fn start(
mut commands: Commands,
windows: Query<&Window, With<PrimaryWindow>>,
asset_server: Res<AssetServer>,
) {
let item_height = 1980_f32;
let direction = ScrollerDirection::Backward;
let primary_window = windows.get_single().expect("no primary window");
let scroller_speed_min = 0.2;
let scroller_speed_step = 0.2;
commands.spawn(Camera2dBundle::default());
let images = (0..=5)
.map(|i| format!("parallax/{i}.png"))
.collect::<VecDeque<String>>();
commands.spawn(SpriteBundle {
texture: asset_server.load(images.get(0).unwrap()),
..default()
});
let sizes = [
Vec2::new(320., 240.),
Vec2::new(128., 240.),
Vec2::new(144., 240.),
Vec2::new(160., 240.),
Vec2::new(320., 240.),
Vec2::new(240., 240.),
];
sizes.into_iter().enumerate().for_each(|(i, size)| {
commands.spawn((
ScrollerSize {
size: Vec2::new(primary_window.width(), item_height),
},
ScrollerBundle {
scroller: Scroller {
speed: scroller_speed_min + i as f32 * scroller_speed_step,
direction: direction.clone(),
render_layer: Some(1),
..default()
},
generator: SingleSpriteGenerator {
path: format!("parallax/{i}.png"),
size,
},
spatial: SpatialBundle::from_transform(Transform::from_translation(Vec3::new(
0.,
0.,
1. + i as f32,
))),
..default()
},
));
});
}