Compare commits
No commits in common. "b76ca954951d79e1c5fc5eac5140e8a65755c582" and "c739219a708a43cc6686d73be570250a2c95fc11" have entirely different histories.
b76ca95495
...
c739219a70
|
@ -2,12 +2,6 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## Version 0.3.2 - 2023-05-04
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
- Instantiate sources for sounds without a source in `PreUpdate`.
|
|
||||||
|
|
||||||
## Version 0.3.1 - 2023-04-04
|
## Version 0.3.1 - 2023-04-04
|
||||||
|
|
||||||
### Miscellaneous Tasks
|
### Miscellaneous Tasks
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_synthizer"
|
name = "bevy_synthizer"
|
||||||
version = "0.3.2"
|
version = "0.3.1"
|
||||||
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
|
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
|
||||||
description = "A Bevy plugin for Synthizer, a library for 3D audio and synthesis with a focus on games and VR applications"
|
description = "A Bevy plugin for Synthizer, a library for 3D audio and synthesis with a focus on games and VR applications"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
|
@ -759,18 +759,13 @@ impl Plugin for SynthizerPlugin {
|
||||||
.insert_resource(defaults)
|
.insert_resource(defaults)
|
||||||
.add_event::<SynthizerEvent>()
|
.add_event::<SynthizerEvent>()
|
||||||
.add_systems(
|
.add_systems(
|
||||||
(
|
(sync_config, swap_buffers, change_panner_strategy)
|
||||||
sync_config,
|
|
||||||
swap_buffers,
|
|
||||||
change_panner_strategy,
|
|
||||||
add_sound_without_source,
|
|
||||||
)
|
|
||||||
.in_set(SynthizerSets::First)
|
.in_set(SynthizerSets::First)
|
||||||
.in_base_set(CoreSet::PreUpdate),
|
.in_base_set(CoreSet::PreUpdate),
|
||||||
)
|
)
|
||||||
.configure_set(SynthizerSets::First.before(SynthizerSets::UpdateHandles))
|
.configure_set(SynthizerSets::First.before(SynthizerSets::UpdateHandles))
|
||||||
.add_systems(
|
.add_systems(
|
||||||
(add_source_handle, add_generator)
|
(add_source_handle, add_generator, add_sound_without_source)
|
||||||
.in_base_set(CoreSet::PostUpdate)
|
.in_base_set(CoreSet::PostUpdate)
|
||||||
.in_set(SynthizerSets::UpdateHandles),
|
.in_set(SynthizerSets::UpdateHandles),
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user