Updated to Bevy 0.15
This commit is contained in:
parent
7ee9bf6172
commit
5aa98ce81c
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_rustysynth"
|
name = "bevy_rustysynth"
|
||||||
description = "A plugin which adds MIDI file and soundfont audio support to the bevy engine via rustysynth."
|
description = "A plugin which adds MIDI file and soundfont audio support to the bevy engine via rustysynth."
|
||||||
version = "0.2.1"
|
version = "0.3.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "0BSD OR MIT OR Apache-2.0"
|
license = "0BSD OR MIT OR Apache-2.0"
|
||||||
|
|
||||||
@ -9,10 +9,10 @@ license = "0BSD OR MIT OR Apache-2.0"
|
|||||||
rustysynth = "1.3"
|
rustysynth = "1.3"
|
||||||
itertools = "0.13"
|
itertools = "0.13"
|
||||||
async-channel = "2.3"
|
async-channel = "2.3"
|
||||||
rodio = "0.19"
|
rodio = "0.20"
|
||||||
|
|
||||||
[dependencies.bevy]
|
[dependencies.bevy]
|
||||||
version = "0.14"
|
version = "0.15"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["bevy_audio", "bevy_asset"]
|
features = ["bevy_audio", "bevy_asset"]
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ use std::{
|
|||||||
|
|
||||||
use async_channel::{Receiver, TryRecvError};
|
use async_channel::{Receiver, TryRecvError};
|
||||||
use bevy::{
|
use bevy::{
|
||||||
asset::{io::Reader, AssetLoader, AsyncReadExt, LoadContext},
|
asset::{io::Reader, AssetLoader, LoadContext},
|
||||||
audio::Source,
|
audio::Source,
|
||||||
prelude::*,
|
prelude::*,
|
||||||
tasks::AsyncComputeTaskPool,
|
tasks::AsyncComputeTaskPool,
|
||||||
@ -64,11 +64,11 @@ impl AssetLoader for MidiAssetLoader {
|
|||||||
|
|
||||||
type Error = io::Error;
|
type Error = io::Error;
|
||||||
|
|
||||||
async fn load<'a>(
|
async fn load(
|
||||||
&'a self,
|
&self,
|
||||||
reader: &'a mut Reader<'_>,
|
reader: &mut dyn Reader,
|
||||||
_settings: &'a Self::Settings,
|
_settings: &Self::Settings,
|
||||||
_load_context: &'a mut LoadContext<'_>,
|
_load_context: &mut LoadContext<'_>,
|
||||||
) -> Result<Self::Asset, Self::Error> {
|
) -> Result<Self::Asset, Self::Error> {
|
||||||
let mut bytes = vec![];
|
let mut bytes = vec![];
|
||||||
reader.read_to_end(&mut bytes).await?;
|
reader.read_to_end(&mut bytes).await?;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user