Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions org/flixel/FlxSound.as
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ package org.flixel
_sound = new EmbeddedSound();
//NOTE: can't pull ID3 info from embedded sound currently
_looped = Looped;
autoDestroy = AutoDestroy;
updateTransform();
exists = true;
return this;
Expand All @@ -279,6 +280,7 @@ package org.flixel
_sound.addEventListener(Event.ID3, gotID3);
_sound.load(new URLRequest(SoundURL));
_looped = Looped;
autoDestroy = AutoDestroy;
updateTransform();
exists = true;
return this;
Expand Down