diff --git a/assets/sounds/LastHit1.ogg b/assets/sounds/LastHit1.ogg
new file mode 100644
index 0000000..52f240f
Binary files /dev/null and b/assets/sounds/LastHit1.ogg differ
diff --git a/assets/sounds/LastHit10.ogg b/assets/sounds/LastHit10.ogg
new file mode 100644
index 0000000..275aea4
Binary files /dev/null and b/assets/sounds/LastHit10.ogg differ
diff --git a/assets/sounds/LastHit2.ogg b/assets/sounds/LastHit2.ogg
new file mode 100644
index 0000000..1ff7ca5
Binary files /dev/null and b/assets/sounds/LastHit2.ogg differ
diff --git a/assets/sounds/LastHit3.ogg b/assets/sounds/LastHit3.ogg
new file mode 100644
index 0000000..643b9f5
Binary files /dev/null and b/assets/sounds/LastHit3.ogg differ
diff --git a/assets/sounds/LastHit4.ogg b/assets/sounds/LastHit4.ogg
new file mode 100644
index 0000000..241a921
Binary files /dev/null and b/assets/sounds/LastHit4.ogg differ
diff --git a/assets/sounds/LastHit5.ogg b/assets/sounds/LastHit5.ogg
new file mode 100644
index 0000000..4a0ef5b
Binary files /dev/null and b/assets/sounds/LastHit5.ogg differ
diff --git a/assets/sounds/LastHit6.ogg b/assets/sounds/LastHit6.ogg
new file mode 100644
index 0000000..22d9016
Binary files /dev/null and b/assets/sounds/LastHit6.ogg differ
diff --git a/assets/sounds/LastHit7.ogg b/assets/sounds/LastHit7.ogg
new file mode 100644
index 0000000..2989336
Binary files /dev/null and b/assets/sounds/LastHit7.ogg differ
diff --git a/assets/sounds/LastHit8.ogg b/assets/sounds/LastHit8.ogg
new file mode 100644
index 0000000..68585b9
Binary files /dev/null and b/assets/sounds/LastHit8.ogg differ
diff --git a/assets/sounds/LastHit9.ogg b/assets/sounds/LastHit9.ogg
new file mode 100644
index 0000000..7962401
Binary files /dev/null and b/assets/sounds/LastHit9.ogg differ
diff --git a/assets/sounds/hit1.ogg b/assets/sounds/hit1.ogg
new file mode 100644
index 0000000..5eaf8fe
Binary files /dev/null and b/assets/sounds/hit1.ogg differ
diff --git a/assets/sounds/hit10.ogg b/assets/sounds/hit10.ogg
new file mode 100644
index 0000000..7c5005a
Binary files /dev/null and b/assets/sounds/hit10.ogg differ
diff --git a/assets/sounds/hit2.ogg b/assets/sounds/hit2.ogg
new file mode 100644
index 0000000..c57b642
Binary files /dev/null and b/assets/sounds/hit2.ogg differ
diff --git a/assets/sounds/hit3.ogg b/assets/sounds/hit3.ogg
new file mode 100644
index 0000000..94146d3
Binary files /dev/null and b/assets/sounds/hit3.ogg differ
diff --git a/assets/sounds/hit4.ogg b/assets/sounds/hit4.ogg
new file mode 100644
index 0000000..cfb2a50
Binary files /dev/null and b/assets/sounds/hit4.ogg differ
diff --git a/assets/sounds/hit5.ogg b/assets/sounds/hit5.ogg
new file mode 100644
index 0000000..857fc99
Binary files /dev/null and b/assets/sounds/hit5.ogg differ
diff --git a/assets/sounds/hit6.ogg b/assets/sounds/hit6.ogg
new file mode 100644
index 0000000..5d842ea
Binary files /dev/null and b/assets/sounds/hit6.ogg differ
diff --git a/assets/sounds/hit7.ogg b/assets/sounds/hit7.ogg
new file mode 100644
index 0000000..0c075bb
Binary files /dev/null and b/assets/sounds/hit7.ogg differ
diff --git a/assets/sounds/hit8.ogg b/assets/sounds/hit8.ogg
new file mode 100644
index 0000000..5345ff4
Binary files /dev/null and b/assets/sounds/hit8.ogg differ
diff --git a/assets/sounds/hit9.ogg b/assets/sounds/hit9.ogg
new file mode 100644
index 0000000..ad6d811
Binary files /dev/null and b/assets/sounds/hit9.ogg differ
diff --git a/src/assets.html b/src/assets.html
index 2c90d50..9371dbe 100644
--- a/src/assets.html
+++ b/src/assets.html
@@ -21,6 +21,7 @@
+
diff --git a/src/components/beat-hit-sound.js b/src/components/beat-hit-sound.js
index 6c83b5b..3898404 100644
--- a/src/components/beat-hit-sound.js
+++ b/src/components/beat-hit-sound.js
@@ -42,8 +42,8 @@ AFRAME.registerComponent('beat-hit-sound', {
this.currentCutDirection = '';
this.el.setAttribute('sound__beathit', {
poolSize: 12,
- src: '#beatHitSound',
- volume: 0.5
+ src: '#hitSound9',
+ volume: 0.9
});
this.processSound = this.processSound.bind(this);
@@ -55,7 +55,7 @@ AFRAME.registerComponent('beat-hit-sound', {
if (!this.el.components.sound__beathit.loaded) {
console.log('[beat-hit-sound] Kicking three.js AudioLoader / sound component...');
this.el.setAttribute('sound__beathit', 'src', '');
- this.el.setAttribute('sound__beathit', 'src', '#beatHitSound');
+ this.el.setAttribute('sound__beathit', 'src', '#hitSound9');
}
},