We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 55be96b + 8855f0b commit d961adcCopy full SHA for d961adc
src/app.js
@@ -140,3 +140,7 @@ p5.OnsetDetect = OnsetDetect;
140
141
import PolySynth from './polysynth';
142
p5.PolySynth = PolySynth;
143
+
144
+// Following are the deprecated classes
145
+import Signal from './deprecations/Signal';
146
+p5.Signal = Signal;
src/deprecations/Signal.js
@@ -0,0 +1,7 @@
1
+class Signal {
2
+ constructor() {
3
+ console.warn('p5.Signal is deprecated , Use Tone.js Signal instead ');
4
+ }
5
+}
6
7
+export default Signal;
0 commit comments