-
Notifications
You must be signed in to change notification settings - Fork 54
/
instance_control.rs
45 lines (41 loc) · 1.44 KB
/
instance_control.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
use bevy::prelude::*;
use bevy_kira_audio::prelude::*;
// This example demonstrates how to control a single audio instance
// This kind of control is not deferred to the end of the current frame. The audio command is
// sent to the audio thread immediately.
fn main() {
App::new()
.add_plugins((DefaultPlugins, AudioPlugin))
.add_systems(Startup, play_loop)
.add_systems(Update, instance_control)
.run();
}
fn instance_control(
handle: Res<InstanceHandle>,
mut audio_instances: ResMut<Assets<AudioInstance>>,
input: Res<ButtonInput<MouseButton>>,
) {
if let Some(instance) = audio_instances.get_mut(&handle.0) {
if input.just_pressed(MouseButton::Left) {
match instance.state() {
PlaybackState::Paused { .. } => {
// There are a lot of control methods defined on the instance
instance.resume(AudioTween::default());
}
PlaybackState::Playing { .. } => {
instance.pause(AudioTween::default());
}
_ => {}
}
}
}
}
#[derive(Resource)]
struct InstanceHandle(Handle<AudioInstance>);
fn play_loop(mut commands: Commands, asset_server: Res<AssetServer>, audio: Res<Audio>) {
let handle = audio
.play(asset_server.load("sounds/loop.ogg"))
.looped()
.handle();
commands.insert_resource(InstanceHandle(handle));
}