forked from lawnjunk/banana-beat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
100 lines (100 loc) · 2.61 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// const snare = function () {
// return new Drum('Snare', 'Samples/snare-acoustic01.mp3');
// };
//
// const hihat = function () {
// return new Drum('Hi-Hat', 'Samples/hihat-dist01.mp3');
// };
//
// const kick = function () {
// return new Drum('Kick', 'Samples/kick-classic.mp3');
// };
//
// const tom1 = function () {
// return new Drum('Tom (1)', 'Samples/tom-acoustic01.mp3');
// };
//
// const tom2 = function () {
// return new Drum('Tom (2)', 'Samples/tom-acoustic02.mp3');
// };
//
// const crash = function () {
// return new Drum(
// 'Crash',
// 'electro-flux-sound-kit/Electro Flux Sound Kit/Percussion (2)/ED Crash/ED Crash 09.wav',
// );
// };
//
// const goat1 = function () {
// return new Drum('Goat (1)', 'random samples/Goat-sound-effectedit1.mp3');
// };
//
// const goat2 = function () {
// return new Drum('Goat (2)', 'random samples/Goat-sound-effectedit2.mp3');
// };
//
// const goat3 = function () {
// return new Drum('Goat (3)', 'random samples/Goat-sound-effectiedit3.mp3');
// };
//
// const bass = function () {
// return new Drum('Bass', 'random samples/Live_bass_Bitz_116.mp3');
// };
//
// const bass2 = function () {
// return new Drum(
// 'Bass (2)',
// 'electro-flux-sound-kit/Electro Flux Sound Kit/Bassdrums/ED Bassdrums 33.wav',
// );
// };
//
// const percussion1 = function () {
// return new Drum(
// 'ED Tom',
// 'electro-flux-sound-kit/Electro Flux Sound Kit/Percussion/ED Percussion 02.wav',
// );
// };
//
// const snare2 = function () {
// return new Drum(
// 'ED Snare',
// 'electro-flux-sound-kit/Electro Flux Sound Kit/Snares/ED Snares 21.wav',
// );
// };
//
// const percussion2 = function () {
// return new Drum(
// 'ED Click',
// 'electro-flux-sound-kit/Electro Flux Sound Kit/Synths/ED Synths 10.wav',
// );
// };
//
// const synth1 = function () {
// return new Drum(
// 'ED Synth',
// 'electro-flux-sound-kit/Electro Flux Sound Kit/Synths/ED Synths 02.wav',
// );
// };
//
// const crash2 = function () {
// return new Drum(
// 'ED Crash',
// 'electro-flux-sound-kit/Electro Flux Sound Kit/Percussion (2)/ED Crash/ED Crash 11.wav',
// );
// };
//
// const guitar1 = function () {
// return new Drum('Guitar Loop', 'random samples/Guitar_loop32(160BPM).mp3');
// };
//
// const synthLoop = function () {
// return new Drum('Synth Loop', 'random samples/scifi-bass.wav');
// };
//
// const bass3 = function () {
// return new Drum('Bass Loop', 'random samples/Bass125A-01.mp3');
// };
//
// const bassLoop2 = function () {
// return new Drum('Bass Loop 2', 'random samples/EMOK1Bass86E-04.mp3');
// };