You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not working: Version 1.0 (tried NEXT too)
Working: 0.6.2
When registering a sound like this: window.createjs.Sound.registerSound({mp3: src}, id, data); , I cannot play the the instance. No errors, no audio.
I think that the sound is being registered with src as a string, but when calling play, src is sent as an object. So, I think that in beginPlaying , when calling SoundChannel.add , var channel = SoundChannel.get(instance.src); returns null, as instance.src is an Object.
The text was updated successfully, but these errors were encountered:
Not working: Version 1.0 (tried NEXT too)
Working: 0.6.2
When registering a sound like this:
window.createjs.Sound.registerSound({mp3: src}, id, data);
, I cannot play the the instance. No errors, no audio.I think that the sound is being registered with
src
as a string, but when calling play,src
is sent as an object. So, I think that inbeginPlaying
, when callingSoundChannel.add
,var channel = SoundChannel.get(instance.src);
returns null, asinstance.src
is an Object.The text was updated successfully, but these errors were encountered: