Compare commits
3 Commits
39cfe6f9d9
...
aa054c3637
Author | SHA1 | Date | |
---|---|---|---|
aa054c3637 | |||
77052eabd9 | |||
1d6c47976a |
|
@ -28,7 +28,7 @@ features = [
|
||||||
backtrace = "0.3"
|
backtrace = "0.3"
|
||||||
bevy_rapier2d = "0.19"
|
bevy_rapier2d = "0.19"
|
||||||
bevy_synthizer = "0.1"
|
bevy_synthizer = "0.1"
|
||||||
bevy_tts = { version = "0.2", default-features = false, features = ["tolk"] }
|
bevy_tts = { version = "0.4", default-features = false, features = ["tolk"] }
|
||||||
coord_2d = "0.3"
|
coord_2d = "0.3"
|
||||||
futures-lite = "1"
|
futures-lite = "1"
|
||||||
gilrs = "0.10"
|
gilrs = "0.10"
|
||||||
|
|
|
@ -384,9 +384,9 @@ impl<State> Default for ExplorationConfig<State> {
|
||||||
|
|
||||||
#[derive(Resource, Clone, Default)]
|
#[derive(Resource, Clone, Default)]
|
||||||
pub struct ExplorationPlugin<ExplorationType, State, MapData> {
|
pub struct ExplorationPlugin<ExplorationType, State, MapData> {
|
||||||
states: Vec<State>,
|
pub states: Vec<State>,
|
||||||
exploration_type: PhantomData<ExplorationType>,
|
pub exploration_type: PhantomData<ExplorationType>,
|
||||||
map_data: PhantomData<MapData>,
|
pub map_data: PhantomData<MapData>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<ExplorationType, State, MapData> Plugin for ExplorationPlugin<ExplorationType, State, MapData>
|
impl<ExplorationType, State, MapData> Plugin for ExplorationPlugin<ExplorationType, State, MapData>
|
||||||
|
|
|
@ -9,7 +9,7 @@ pub mod icon;
|
||||||
pub mod volumetric;
|
pub mod volumetric;
|
||||||
|
|
||||||
pub use footstep::Footstep;
|
pub use footstep::Footstep;
|
||||||
pub use icon::SoundIcon;
|
pub use icon::{SoundIcon, SoundIconPlugin};
|
||||||
pub use volumetric::Volumetric;
|
pub use volumetric::Volumetric;
|
||||||
|
|
||||||
/*fn scale_sounds(config: Res<CoreConfig>, mut sounds: Query<&mut Sound>) {
|
/*fn scale_sounds(config: Res<CoreConfig>, mut sounds: Query<&mut Sound>) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user