File tree Expand file tree Collapse file tree 1 file changed +0
-45
lines changed Expand file tree Collapse file tree 1 file changed +0
-45
lines changed Original file line number Diff line number Diff line change @@ -112,11 +112,6 @@ define(function (require) {
112
112
return this . buffer . type ;
113
113
} ;
114
114
115
- /**
116
- * Start the noise
117
- *
118
- * @method start
119
- */
120
115
p5 . Noise . prototype . start = function ( ) {
121
116
if ( this . started ) {
122
117
this . stop ( ) ;
@@ -130,11 +125,6 @@ define(function (require) {
130
125
this . started = true ;
131
126
} ;
132
127
133
- /**
134
- * Stop the noise.
135
- *
136
- * @method stop
137
- */
138
128
p5 . Noise . prototype . stop = function ( ) {
139
129
var now = p5sound . audiocontext . currentTime ;
140
130
if ( this . noise ) {
@@ -143,41 +133,6 @@ define(function (require) {
143
133
}
144
134
} ;
145
135
146
- /**
147
- * Pan the noise.
148
- *
149
- * @method pan
150
- * @param {Number } panning Number between -1 (left)
151
- * and 1 (right)
152
- * @param {Number } timeFromNow schedule this event to happen
153
- * seconds from now
154
- */
155
-
156
- /**
157
- * Set the amplitude of the noise between 0 and 1.0. Or,
158
- * modulate amplitude with an audio signal such as an oscillator.
159
- *
160
- * @method amp
161
- * @param {Number|Object } volume amplitude between 0 and 1.0
162
- * or modulating signal/oscillator
163
- * @param {Number } [rampTime] create a fade that lasts rampTime
164
- * @param {Number } [timeFromNow] schedule this event to happen
165
- * seconds from now
166
- */
167
-
168
- /**
169
- * Send output to a p5.sound or web audio object
170
- *
171
- * @method connect
172
- * @param {Object } unit
173
- */
174
-
175
- /**
176
- * Disconnect all output.
177
- *
178
- * @method disconnect
179
- */
180
-
181
136
p5 . Noise . prototype . dispose = function ( ) {
182
137
var now = p5sound . audiocontext . currentTime ;
183
138
You can’t perform that action at this time.
0 commit comments