From 4939a0e8ffcb9381d570708bb9e385609cf5ab7d Mon Sep 17 00:00:00 2001 From: Andrew Kesterson Date: Sat, 14 Jun 2014 00:20:53 -0700 Subject: [PATCH] Add positional sounds from the tilemap --- moonlight/js/moonlight-skulk.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/moonlight/js/moonlight-skulk.js b/moonlight/js/moonlight-skulk.js index 115d26e..81d6c76 100644 --- a/moonlight/js/moonlight-skulk.js +++ b/moonlight/js/moonlight-skulk.js @@ -73,11 +73,11 @@ function SoundSprite(game, x, y, key, frame, Phaser.Sprite.call(this, game, x, y, null); this.sound_key = sound_key; this.sound_marker = ( typeof sound_marker == undefined ? sound_marker : ''); - this.sound_volume = ( typeof sound_volume == undefined ? Number(sound_volume) : 1.0 ); - this.sound_position = ( typeof sound_position == undefined ? parseInt(sound_position) : 1.0 ); - this.sound_loop = ( typeof sound_loop == undefined ? Boolean(sound_loop) : true ); - this.sound_forcerestart = ( typeof sound_forcerestart == undefined ? Boolean(sound_forcerestart) : true ); - this.sound_nofade = (typeof sound_nofade == undefined ? Boolean(sound_nofade) : false); + this.sound_volume = ( typeof sound_volume == undefined ? sound_volume : 1.0 ); + this.sound_position = ( typeof sound_position == undefined ? sound_position : 1.0 ); + this.sound_loop = ( typeof sound_loop == undefined ? sound_loop : true ); + this.sound_forcerestart = ( typeof sound_forcerestart == undefined ? sound_forcerestart : true ); + this.sound_nofade = (typeof sound_nofade == undefined ? sound_nofade : false); this.sound = null; } @@ -93,7 +93,7 @@ SoundSprite.prototype.update_new_values = function() { return; } this.sound_marker = parseInt(this.sound_marker); - this.sound_position = parseInt(this.sound_marker); + this.sound_position = parseInt(this.sound_position); this.sound_volume = Number(this.sound_volume); this.sound_loop = Boolean(this.sound_loop); this.sound_forcerestart = Boolean(this.sound_forcerestart);