mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 00:27:58 +00:00
make constantSource accessible from within the class
This commit is contained in:
parent
f383ca7387
commit
57af70c921
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ implements AbstractParam<Type> {
|
||||||
/**
|
/**
|
||||||
* The constant source node which generates the signal
|
* The constant source node which generates the signal
|
||||||
*/
|
*/
|
||||||
private _constantSource: ConstantSourceNode = this.context.createConstantSource();
|
protected _constantSource: ConstantSourceNode = this.context.createConstantSource();
|
||||||
readonly output: OutputNode = this._constantSource;
|
readonly output: OutputNode = this._constantSource;
|
||||||
protected _param: Param<Type>;
|
protected _param: Param<Type>;
|
||||||
readonly input: InputNode;
|
readonly input: InputNode;
|
||||||
|
|
Loading…
Reference in a new issue