We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 305ee00 commit 0b14160Copy full SHA for 0b14160
crates/firewheel-core/src/dsp/delay_line.rs
@@ -1,6 +1,8 @@
1
use core::num::NonZeroU32;
2
3
use bevy_platform::prelude::Vec;
4
+#[cfg(not(feature = "std"))]
5
+use num_traits::Float;
6
7
#[derive(Debug)]
8
pub struct DelayLine {
crates/firewheel-nodes/src/echo.rs
@@ -24,6 +24,8 @@ use firewheel_core::{
24
},
25
param::smoother::{SmoothedParam, SmootherConfig},
26
};
27
28
29
30
const DEFAULT_DELAY_SMOOTH_SECONDS: f32 = 0.25;
31
0 commit comments