mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-04-27 13:11:42 +00:00
fix broken SJ sound
This commit is contained in:
parent
336a5e3314
commit
7b13a002c0
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ class SuperJump extends PowerUp {
|
||||||
public override function init(level:MarbleWorld, onFinish:Void->Void) {
|
public override function init(level:MarbleWorld, onFinish:Void->Void) {
|
||||||
super.init(level, () -> {
|
super.init(level, () -> {
|
||||||
ResourceLoader.load("sound/pusuperjumpvoice.wav").entry.load(() -> {
|
ResourceLoader.load("sound/pusuperjumpvoice.wav").entry.load(() -> {
|
||||||
this.pickupSound = ResourceLoader.getResource("sound/pusuperjumpvoice.wav", ResourceLoader.getAudio, this.soundResources);
|
this.pickupSound = ResourceLoader.getResource("data/sound/pusuperjumpvoice.wav", ResourceLoader.getAudio, this.soundResources);
|
||||||
ResourceLoader.load("sound/dosuperjump.wav").entry.load(onFinish);
|
ResourceLoader.load("sound/dosuperjump.wav").entry.load(onFinish);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue