()
| 115 | } |
| 116 | |
| 117 | impl Default for SpatialBasicNode { |
| 118 | fn default() -> Self { |
| 119 | Self { |
| 120 | volume: Volume::default(), |
| 121 | offset: Vec3::new(0.0, 0.0, 0.0), |
| 122 | panning_threshold: 0.6, |
| 123 | downmix: true, |
| 124 | distance_attenuation: DistanceAttenuation::default(), |
| 125 | muffle_cutoff_hz: MUFFLE_CUTOFF_HZ_MAX, |
| 126 | smooth_seconds: DEFAULT_SMOOTH_SECONDS, |
| 127 | min_gain: 0.0001, |
| 128 | coeff_update_factor: CoeffUpdateFactor::default(), |
| 129 | } |
| 130 | } |
| 131 | } |
| 132 |
nothing calls this directly
no outgoing calls
no test coverage detected