Compare commits
3 Commits
c14f94eb76
...
c739219a70
Author | SHA1 | Date | |
---|---|---|---|
c739219a70 | |||
f69758164b | |||
459d074040 |
|
@ -2,6 +2,12 @@
|
||||||
|
|
||||||
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.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
|
## Version 0.3.0 - 2023-04-03
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bevy_synthizer"
|
name = "bevy_synthizer"
|
||||||
version = "0.3.0"
|
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"
|
||||||
|
|
16
src/lib.rs
16
src/lib.rs
|
@ -770,20 +770,18 @@ impl Plugin for SynthizerPlugin {
|
||||||
.in_set(SynthizerSets::UpdateHandles),
|
.in_set(SynthizerSets::UpdateHandles),
|
||||||
)
|
)
|
||||||
.configure_set(SynthizerSets::UpdateHandles.before(SynthizerSets::UpdateProperties))
|
.configure_set(SynthizerSets::UpdateHandles.before(SynthizerSets::UpdateProperties))
|
||||||
.add_systems(
|
.add_system(
|
||||||
(
|
update_sound_properties
|
||||||
update_listener,
|
|
||||||
update_source_properties,
|
|
||||||
update_sound_properties,
|
|
||||||
)
|
|
||||||
.in_base_set(CoreSet::PostUpdate)
|
.in_base_set(CoreSet::PostUpdate)
|
||||||
.in_set(SynthizerSets::UpdateProperties),
|
.in_set(SynthizerSets::UpdateProperties),
|
||||||
)
|
)
|
||||||
.configure_set(
|
.add_systems(
|
||||||
SynthizerSets::UpdateProperties
|
(update_listener, update_source_properties)
|
||||||
.before(SynthizerSets::UpdateState)
|
.in_base_set(CoreSet::PostUpdate)
|
||||||
|
.in_set(SynthizerSets::UpdateProperties)
|
||||||
.after(TransformSystem::TransformPropagate),
|
.after(TransformSystem::TransformPropagate),
|
||||||
)
|
)
|
||||||
|
.configure_set(SynthizerSets::UpdateProperties.before(SynthizerSets::UpdateState))
|
||||||
.add_systems(
|
.add_systems(
|
||||||
(update_source_playback_state, update_sound_playback_state)
|
(update_source_playback_state, update_sound_playback_state)
|
||||||
.in_base_set(CoreSet::PostUpdate)
|
.in_base_set(CoreSet::PostUpdate)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user