Compare commits

..

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

3 changed files with 10 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.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.1"
version = "0.3.0"
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,18 +770,20 @@ impl Plugin for SynthizerPlugin {
.in_set(SynthizerSets::UpdateHandles),
)
.configure_set(SynthizerSets::UpdateHandles.before(SynthizerSets::UpdateProperties))
.add_system(
update_sound_properties
.add_systems(
(
update_listener,
update_source_properties,
update_sound_properties,
)
.in_base_set(CoreSet::PostUpdate)
.in_set(SynthizerSets::UpdateProperties),
)
.add_systems(
(update_listener, update_source_properties)
.in_base_set(CoreSet::PostUpdate)
.in_set(SynthizerSets::UpdateProperties)
.configure_set(
SynthizerSets::UpdateProperties
.before(SynthizerSets::UpdateState)
.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)