-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathheadless.rs
54 lines (38 loc) · 1.56 KB
/
headless.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
// This example shows how to use this plugin in a bevy app without bevy_render.
//
// For example for a headless server with MinimalPlugins, while still using the animations events.
#[path = "./common/mod.rs"]
pub mod common;
use bevy::prelude::*;
use bevy_spritesheet_animation::prelude::*;
fn main() {
App::new()
.add_plugins((
MinimalPlugins,
SpritesheetAnimationPlugin { enable_3d: false },
))
.add_systems(Startup, spawn_animation)
.add_systems(Update, log_animations_events)
.run();
}
fn spawn_animation(mut commands: Commands, mut library: ResMut<AnimationLibrary>) {
commands.spawn(Camera2d);
// Create a clip that references some frames from a spritesheet
let spritesheet = Spritesheet::new(8, 8);
let clip = Clip::from_frames(spritesheet.row(3));
let clip_id = library.register_clip(clip);
// Create an animation that uses the clip
let animation = Animation::from_clip(clip_id);
let animation_id = library.register_animation(animation);
// Name the animation to retrieve it from other systems
library.name_animation(animation_id, "walk").unwrap();
// Spawn an entity with a SpritesheetAnimation component that references our animation
//
// We dont even need a Sprite since its only used for bevy_render (and we aren't rendering anything)
commands.spawn(SpritesheetAnimation::from_id(animation_id));
}
fn log_animations_events(mut events: EventReader<AnimationEvent>) {
for event in events.read() {
println!("{:?}", event);
}
}