implemented getters and setters
This commit is contained in:
parent
395eff3b8e
commit
4ab9e594d2
1 changed files with 18 additions and 0 deletions
|
@ -136,6 +136,24 @@ namespace audio {
|
||||||
this._margin_frames = value;
|
this._margin_frames = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get_attack_smooth(): number {
|
||||||
|
return this._smooth_attack;
|
||||||
|
}
|
||||||
|
|
||||||
|
get_release_smooth(): number {
|
||||||
|
return this._smooth_release;
|
||||||
|
}
|
||||||
|
|
||||||
|
set_attack_smooth(value: number) {
|
||||||
|
this._smooth_attack = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
set_release_smooth(value: number) {
|
||||||
|
this._smooth_release = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
get_threshold(): number {
|
get_threshold(): number {
|
||||||
return this._threshold;
|
return this._threshold;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue