DarthVernus

Results 1 issues of DarthVernus

``` //... Assets.loadSoundFromPath("impact_a.ogg", function(sound:Sound) { testSound = sound; }); } //... function keyboardDownListener(keyCode:KeyCode) { if (testSoundAC != null) testSoundAC.play(); else if (testSound != null) testSoundAC = Audio.play(testSound); } ```