Compare commits

..

No commits in common. "b76ca954951d79e1c5fc5eac5140e8a65755c582" and "c739219a708a43cc6686d73be570250a2c95fc11" have entirely different histories.

3 changed files with 3 additions and 14 deletions

View File

@ -2,12 +2,6 @@
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
### Miscellaneous Tasks

View File

@ -1,6 +1,6 @@
[package]
name = "bevy_synthizer"
version = "0.3.2"
version = "0.3.1"
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"
license = "MIT OR Apache-2.0"

View File

@ -759,18 +759,13 @@ impl Plugin for SynthizerPlugin {
.insert_resource(defaults)
.add_event::<SynthizerEvent>()
.add_systems(
(
sync_config,
swap_buffers,
change_panner_strategy,
add_sound_without_source,
)
(sync_config, swap_buffers, change_panner_strategy)
.in_set(SynthizerSets::First)
.in_base_set(CoreSet::PreUpdate),
)
.configure_set(SynthizerSets::First.before(SynthizerSets::UpdateHandles))
.add_systems(
(add_source_handle, add_generator)
(add_source_handle, add_generator, add_sound_without_source)
.in_base_set(CoreSet::PostUpdate)
.in_set(SynthizerSets::UpdateHandles),
)