From bb8eceb731a65a21d90781dd2e3070cbc7a1123e Mon Sep 17 00:00:00 2001 From: netpro2k <netpro2k@gmail.com> Date: Thu, 5 Oct 2017 15:51:25 -0700 Subject: [PATCH] Fix error being thrown on your own audio source --- src/components/audio-feedback.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/audio-feedback.js b/src/components/audio-feedback.js index a0313fd04..cee9abe09 100644 --- a/src/components/audio-feedback.js +++ b/src/components/audio-feedback.js @@ -9,10 +9,6 @@ AFRAME.registerComponent("audio-feedback", { init: function() { // @TODO using an arbitrary timeout here which is very bad. Needs to wait on model loading and audio source being connected setTimeout(() => { - this.mat = this.el.object3D.getObjectByName( - "DodecAvatar_Head_0" - ).material; - const audioComponent = (this.data.audioSource || this.el).components[ "networked-audio-source" ]; @@ -20,6 +16,10 @@ AFRAME.registerComponent("audio-feedback", { const audioSource = audioComponent && audioComponent.sound; if (!audioSource) return; + this.mat = this.el.object3D.getObjectByName( + "DodecAvatar_Head_0" + ).material; + this.analyser = audioSource.context.createAnalyser(); this.levels = new Uint8Array(this.analyser.frequencyBinCount); audioSource.disconnect(); -- GitLab