Skip to content

Commit

Permalink
replacement of es5 functions to es6 classes feat p5.SoundLoop (#530)
Browse files Browse the repository at this point in the history
  • Loading branch information
endurance21 authored Aug 24, 2020
1 parent 4d65d7c commit 91d8b34
Show file tree
Hide file tree
Showing 2 changed files with 249 additions and 257 deletions.
16 changes: 3 additions & 13 deletions src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,40 +42,33 @@ p5.BandPass = BandPass;
import EQ from './eq';
p5.EQ = EQ;



import listener3D from './listener3d';
p5.listener3D = listener3D;



import Panner3D from './panner3d';
p5.Panner3D = Panner3D;



import Delay from './delay';
p5.Delay = Delay;


import './reverb';

import Metro from './metro';
p5.Metro = Metro;

import './looper';
import './soundLoop';

import SoundLoop from './soundLoop';
p5.SoundLoop = SoundLoop;

import Compressor from './compressor';
p5.Compressor = Compressor;

import './soundRecorder';


import peakDetect from './peakDetect';
p5.peakDetect = peakDetect;


import Distortion from './distortion';
p5.Distortion = Distortion;

Expand All @@ -88,11 +81,8 @@ p5.AudioVoice = AudioVoice;
import MonoSynth from './monosynth';
p5.MonoSynth = MonoSynth;



import OnsetDetect from './onsetDetect';
p5.OnsetDetect = OnsetDetect;

import PolySynth from './polysynth';
p5.PolySynth = PolySynth;

Loading

0 comments on commit 91d8b34

Please sign in to comment.