Skip to content

Commit

Permalink
Replacement of es5 functions to es6 classes feat p5.listener3D (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
endurance21 authored Aug 17, 2020
1 parent 3f632c3 commit 57b8e88
Show file tree
Hide file tree
Showing 2 changed files with 229 additions and 225 deletions.
12 changes: 11 additions & 1 deletion src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,22 @@ import './filter';
import EQ from './eq';
p5.EQ = EQ;



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



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

import './listener3d';


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


import './reverb';
import './metro';
import './looper';
Expand All @@ -56,10 +64,12 @@ p5.Compressor = Compressor;

import './soundRecorder';


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



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

Expand Down
Loading

0 comments on commit 57b8e88

Please sign in to comment.