Compare commits

...

3 Commits

Author SHA1 Message Date
c739219a70 Release
All checks were successful
continuous-integration/drone/push Build is passing
2023-04-04 07:26:39 -05:00
f69758164b Update CHANGELOG. 2023-04-04 07:26:26 -05:00
459d074040 chore: Only update_source_properties and update_listener need to run after transform propagation. 2023-04-04 07:20:43 -05:00
3 changed files with 14 additions and 10 deletions

View File

@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## Version 0.3.1 - 2023-04-04
### Miscellaneous Tasks
- Only `update_source_properties` and `update_listener` need to run after transform propagation.
## Version 0.3.0 - 2023-04-03
### Features

View File

@ -1,6 +1,6 @@
[package]
name = "bevy_synthizer"
version = "0.3.0"
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

@ -770,20 +770,18 @@ impl Plugin for SynthizerPlugin {
.in_set(SynthizerSets::UpdateHandles),
)
.configure_set(SynthizerSets::UpdateHandles.before(SynthizerSets::UpdateProperties))
.add_systems(
(
update_listener,
update_source_properties,
update_sound_properties,
)
.add_system(
update_sound_properties
.in_base_set(CoreSet::PostUpdate)
.in_set(SynthizerSets::UpdateProperties),
)
.configure_set(
SynthizerSets::UpdateProperties
.before(SynthizerSets::UpdateState)
.add_systems(
(update_listener, update_source_properties)
.in_base_set(CoreSet::PostUpdate)
.in_set(SynthizerSets::UpdateProperties)
.after(TransformSystem::TransformPropagate),
)
.configure_set(SynthizerSets::UpdateProperties.before(SynthizerSets::UpdateState))
.add_systems(
(update_source_playback_state, update_sound_playback_state)
.in_base_set(CoreSet::PostUpdate)