Skip to content

Commit 67f0dcc

Browse files
committed
Added multichannel echo/delay node
added back stopping. pause still strange, time changing still can click smoothed filter values
1 parent 03e29a3 commit 67f0dcc

5 files changed

Lines changed: 763 additions & 2 deletions

File tree

crates/firewheel-nodes/Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ all_nodes = [
3939
"mix",
4040
"freeverb",
4141
"convolution",
42-
"fast_rms"
42+
"fast_rms",
43+
"echo",
4344
]
4445
# All nodes which are no_std compatible
4546
all_nodes_no_std = [
@@ -53,7 +54,8 @@ all_nodes_no_std = [
5354
"delay_compensation",
5455
"mix",
5556
"freeverb",
56-
"fast_rms"
57+
"fast_rms",
58+
"echo",
5759
]
5860
# Enables event scheduling support in some nodes.
5961
scheduled_events = ["firewheel-core/scheduled_events"]
@@ -84,6 +86,8 @@ freeverb = []
8486
convolution = ["dep:fft-convolver"]
8587
# Enables the FastRmsNode for measuring loudness
8688
fast_rms = []
89+
# Enables the echo node
90+
echo = []
8791
# Enables `Component` derive macros
8892
bevy = ["dep:bevy_ecs", "firewheel-core/bevy"]
8993
# Enables `Reflect` derive macros

0 commit comments

Comments
 (0)