File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -67,15 +67,15 @@ define(function (require) {
67
67
* <a href="http://www.w3.org/TR/webaudio/#DelayNode">
68
68
* Web Audio Delay Nodes</a>, one for each stereo channel.
69
69
*
70
- * @property leftDelay {Object} Web Audio Delay Node
70
+ * @property { DelayNode } leftDelay
71
71
*/
72
72
this . leftDelay = this . ac . createDelay ( ) ;
73
73
/**
74
74
* The p5.Delay is built with two
75
75
* <a href="http://www.w3.org/TR/webaudio/#DelayNode">
76
76
* Web Audio Delay Nodes</a>, one for each stereo channel.
77
77
*
78
- * @property rightDelay {Object} Web Audio Delay Node
78
+ * @property { DelayNode } rightDelay
79
79
*/
80
80
this . rightDelay = this . ac . createDelay ( ) ;
81
81
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ define(function (require) {
59
59
* <a href="http://www.w3.org/TR/webaudio/#WaveShaperNode">
60
60
* Web Audio WaveShaper Node</a>.
61
61
*
62
- * @property WaveShaperNode {Object} AudioNode
62
+ * @property { AudioNode } WaveShaperNode
63
63
*/
64
64
this . waveShaperNode = this . ac . createWaveShaper ( ) ;
65
65
Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ define(function (require) {
22
22
/**
23
23
* The p5.Effect class is built
24
24
* using Tone.js CrossFade
25
- * @property _drywet {Object} ToneJS node
25
+ * @property { CrossFade } _drywet
26
26
*/
27
27
this . _drywet = new CrossFade ( 1 ) ;
28
28
29
29
/**
30
30
* In classes that extend
31
31
* p5.Effect, connect effect nodes
32
32
* to the wet parameter
33
- * @property wet {Object} Web Audio Gain Node
33
+ * @property { GainNode } wet
34
34
*/
35
35
this . wet = this . ac . createGain ( ) ;
36
36
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ define(function (require) {
86
86
* <a href="http://www.w3.org/TR/webaudio/#BiquadFilterNode">
87
87
* Web Audio BiquadFilter Node</a>.
88
88
*
89
- * @property biquadFilter {Object} Web Audio Delay Node
89
+ * @property { DelayNode } biquadFilter
90
90
*/
91
91
92
92
this . biquad = this . ac . createBiquadFilter ( ) ;
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ define(function (require) {
102
102
* strings, or an object with multiple parameters.
103
103
* Zero (0) indicates a rest.
104
104
*
105
- * @property sequence {Array}
105
+ * @property {Array } sequence
106
106
*/
107
107
this . sequence = sequence ;
108
108
} ;
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ define(function () {
111
111
* Web Audio API nodes including a dyanmicsCompressor (<code>.limiter</code>),
112
112
* and Gain Nodes for <code>.input</code> and <code>.output</code>.
113
113
*
114
- * @property soundOut {Object}
114
+ * @property {Object } soundOut
115
115
*/
116
116
p5 . prototype . soundOut = p5 . soundOut = p5sound ;
117
117
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ define(function (require) {
236
236
* <a href="http://www.w3.org/TR/webaudio/#ConvolverNode">
237
237
* Web Audio Convolver Node</a>.
238
238
*
239
- * @property convolverNode {Object} Web Audio Convolver Node
239
+ * @property { ConvolverNode } convolverNod
240
240
*/
241
241
this . convolverNode = this . ac . createConvolver ( ) ;
242
242
@@ -433,7 +433,7 @@ define(function (require) {
433
433
* they will be stored as Objects in this Array. Toggle between them
434
434
* with the <code>toggleImpulse(id)</code> method.
435
435
*
436
- * @property impulses {Array} Array of Web Audio Buffers
436
+ * @property {Array } impulses
437
437
*/
438
438
p5 . Convolver . prototype . impulses = [ ] ;
439
439
You can’t perform that action at this time.
0 commit comments