soundchip 0.4.61

Software sinth with configurable channels for authentic sounding virtual sound chips.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::prelude::*;

pub const VIBRATTO_SUBTLE:Vibratto = Vibratto{
    steps: Some(16),
    amplitude: 1.0 / 48.0,
    frequency: 6.0,
};

pub const VIBRATTO_INTENSE:Vibratto = Vibratto{
    steps: Some(16),
    amplitude: 1.0 / 12.0,
    frequency: 10.0,
};