play intro song after scene load to prevent choppy
This commit is contained in:
9
src/components/intro-song.js
Normal file
9
src/components/intro-song.js
Normal file
@@ -0,0 +1,9 @@
|
||||
AFRAME.registerComponent('intro-song', {
|
||||
multiple: true,
|
||||
|
||||
play: function () {
|
||||
const audio = document.getElementById('introSong');
|
||||
audio.volume = 0.5;
|
||||
audio.play();
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user