From 9bed37c86c0f8d9f57852caa40c76e7916b679db Mon Sep 17 00:00:00 2001 From: Atlante45 Date: Mon, 15 Sep 2014 16:05:26 -0700 Subject: [PATCH] Update position of audio --- examples/radio.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/radio.js b/examples/radio.js index 51233f5bb4..6ffc7deb84 100644 --- a/examples/radio.js +++ b/examples/radio.js @@ -9,7 +9,7 @@ // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // -var position = { x:1, y: 1, z: 20 }; +var position = { x:1, y: 1, z: 10 }; var rotation = Quat.fromPitchYawRollDegrees(0, 0, 0); var scale = 1.0; @@ -20,8 +20,8 @@ var AudioRotationOffset = Quat.fromPitchYawRollDegrees(0, -90, 0); var audioOptions = new AudioInjectionOptions(); audioOptions.volume = 0.7; audioOptions.position = position; -//audioOptions.orientation = Quat.multiply(AudioRotationOffset, rotation); -//audioOptions.loop = true; +audioOptions.orientation = Quat.multiply(AudioRotationOffset, rotation); +audioOptions.loop = true; audioOptions.isStereo = true; var injector = null; @@ -49,13 +49,13 @@ function update() { var newProperties = Entities.getEntityProperties(entity); if (newProperties.type === "Model") { if (newProperties.position != properties.position) { - + audioOptions.position = newProperties.position; + } + if (newProperties.orientation != properties.orientation) { + audioOptions.orientation = newProperties.orientation; } - - - - + properties = newProperties; } else { entity = null; Script.update.disconnect(update);