Skew the pitch parameter range
This commit is contained in:
parent
951cac51d7
commit
344427f254
1 changed files with 3 additions and 1 deletions
|
@ -77,9 +77,11 @@ impl Default for PubertySimulatorParams {
|
||||||
pitch_octaves: FloatParam::new(
|
pitch_octaves: FloatParam::new(
|
||||||
"Pitch",
|
"Pitch",
|
||||||
-1.0,
|
-1.0,
|
||||||
FloatRange::Linear {
|
FloatRange::SymmetricalSkewed {
|
||||||
min: -5.0,
|
min: -5.0,
|
||||||
max: 5.0,
|
max: 5.0,
|
||||||
|
factor: FloatRange::skew_factor(-1.0),
|
||||||
|
center: 0.0,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
.with_unit(" Octaves")
|
.with_unit(" Octaves")
|
||||||
|
|
Loading…
Add table
Reference in a new issue